[U-Boot] [PATCH v1] exynos: Fix file system defines

Suriyan Ramasami suriyan.r at gmail.com
Tue Nov 25 18:41:42 CET 2014


On the odroid, files in an ext4 file system were not being accessed.
Correct the #defines to take care of this.

Signed-off-by: Suriyan Ramasami <suriyan.r at gmail.com>
---

Changes in v1:
- First try

 include/configs/exynos-common.h | 9 ++++++++-
 1 file changed, 8 insertions(+), 1 deletion(-)

diff --git a/include/configs/exynos-common.h b/include/configs/exynos-common.h
index 1f3ee55..b2e914f 100644
--- a/include/configs/exynos-common.h
+++ b/include/configs/exynos-common.h
@@ -66,8 +66,15 @@
 #include <config_cmd_default.h>
 
 #define CONFIG_CMD_MMC
-#define CONFIG_CMD_EXT4_WRITE
+
+/*  File Systems */
+#define CONFIG_FS_FAT
 #define CONFIG_FAT_WRITE
+#define CONFIG_FS_EXT4
+#define CONFIG_EXT4_WRITE
+#define CONFIG_CMD_FAT
+#define CONFIG_CMD_EXT4
+#define CONFIG_CMD_EXT4_WRITE
 #define CONFIG_CMD_FS_GENERIC
 
 #define CONFIG_CMD_PART
-- 
1.8.3.1



More information about the U-Boot mailing list