arm: m53evk: Enable FS_GENERIC
Enable the CONFIG_CMD_FS_GENERIC on m53evk to avoid per-fs specific commands and tweak the environment to cater for this new option. Signed-off-by: Marek Vasut <marex@denx.de> Cc: Stefano Babic <sbabic@denx.de>
This commit is contained in:
parent
fc532a921a
commit
febae49a2b
|
@ -38,6 +38,7 @@
|
|||
#define CONFIG_CMD_EXT4
|
||||
#define CONFIG_CMD_EXT4_WRITE
|
||||
#define CONFIG_CMD_FAT
|
||||
#define CONFIG_CMD_FS_GENERIC
|
||||
#define CONFIG_CMD_GREPENV
|
||||
#define CONFIG_CMD_I2C
|
||||
#define CONFIG_CMD_MII
|
||||
|
@ -305,7 +306,7 @@
|
|||
"addargs=run addcons addmtd addmisc\0" \
|
||||
"mmcload=" \
|
||||
"mmc rescan ; " \
|
||||
"ext4load mmc 0:1 ${kernel_addr_r} ${bootfile}\0" \
|
||||
"load mmc 0:1 ${kernel_addr_r} ${bootfile}\0" \
|
||||
"ubiload=" \
|
||||
"ubi part UBI ; ubifsmount ubi0:rootfs ; " \
|
||||
"ubifsload ${kernel_addr_r} /boot/${bootfile}\0" \
|
||||
|
@ -349,7 +350,7 @@
|
|||
"try_bootscript=" \
|
||||
"mmc rescan;" \
|
||||
"if test -e mmc 0:1 ${bootscript} ; then " \
|
||||
"if ext4load mmc 0:1 ${kernel_addr_r} ${bootscript};" \
|
||||
"if load mmc 0:1 ${kernel_addr_r} ${bootscript};" \
|
||||
"then;" \
|
||||
"\techo Running bootscript...;" \
|
||||
"\tsource ${kernel_addr_r};" \
|
||||
|
|
Loading…
Reference in New Issue