[Feature]add MT2731_MP2_MR2_SVN388 baseline version

Change-Id: Ief04314834b31e27effab435d3ca8ba33b499059
diff --git a/meta/meta-mediatek/recipes-support/fsck-msdos/files/makefile.patch b/meta/meta-mediatek/recipes-support/fsck-msdos/files/makefile.patch
new file mode 100755
index 0000000..e4be6f1
--- /dev/null
+++ b/meta/meta-mediatek/recipes-support/fsck-msdos/files/makefile.patch
@@ -0,0 +1,19 @@
+diff --git a/Makefile b/Makefile

+new file mode 100644

+index 0000000..e0cce70

+--- /dev/null

++++ b/Makefile

+@@ -0,0 +1,13 @@

++TARGET  := fsck_msdos

++SOURCES := boot.c check.c dir.c fat.c main.c

++OBJECTS := $(SOURCES:.c=.o)

++

++.PHONY: all clean install

++

++all: $(TARGET)

++

++$(TARGET): $(OBJECTS)

++	$(LINK.o) $^ -o $@

++

++clean: 

++	$(RM) $(OBJECTS) $(TARGET)