diff mbox

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

Message ID 1416937302-31040-1-git-send-email-suriyan.r@gmail.com
State Not Applicable
Headers show

Commit Message

Suriyan Ramasami Nov. 25, 2014, 5:41 p.m. UTC
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@gmail.com>
---

Changes in v1:
- First try

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

Comments

Ian Campbell Nov. 26, 2014, 9:38 a.m. UTC | #1
On Tue, 2014-11-25 at 09:41 -0800, Suriyan Ramasami wrote:
> On the odroid, files in an ext4 file system were not being accessed.
> Correct the #defines to take care of this.

In u-boot-samsung.git#master since a bunch of this stuff has changed, in
particular include/configs/exynos-common.h uses config_distro_defaults.h
which I think provides most of what you've added here.

Ian.
Suriyan Ramasami Nov. 26, 2014, 4:09 p.m. UTC | #2
Hello Ian.

On Wed, Nov 26, 2014 at 1:38 AM, Ian Campbell <Ian.Campbell@citrix.com> wrote:
> On Tue, 2014-11-25 at 09:41 -0800, Suriyan Ramasami wrote:
>> On the odroid, files in an ext4 file system were not being accessed.
>> Correct the #defines to take care of this.
>
> In u-boot-samsung.git#master since a bunch of this stuff has changed, in
> particular include/configs/exynos-common.h uses config_distro_defaults.h
> which I think provides most of what you've added here.
>

Thank you for your note.
You are right. I checked again and it works (u-boot-samsung master).
Somehow, I recall it to be not working. Nonetheless, it works now.

This patch can be RIP in software heaven.

Thanks
- Suriyan

> Ian.
>
diff mbox

Patch

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