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

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(-)
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

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.

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.
participants (2)
-
Ian Campbell
-
Suriyan Ramasami