mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-11 07:34:31 +00:00
arm: m28evk: Enable FS_GENERIC
Enable the CONFIG_CMD_FS_GENERIC on m28evk 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
14b256e5c0
commit
fc532a921a
1 changed files with 3 additions and 2 deletions
|
@ -32,6 +32,7 @@
|
|||
#define CONFIG_CMD_EXT4
|
||||
#define CONFIG_CMD_EXT4_WRITE
|
||||
#define CONFIG_CMD_FAT
|
||||
#define CONFIG_CMD_FS_GENERIC
|
||||
#define CONFIG_CMD_GPIO
|
||||
#define CONFIG_CMD_GREPENV
|
||||
#define CONFIG_CMD_I2C
|
||||
|
@ -236,7 +237,7 @@
|
|||
"addargs=run addcons addmtd addmisc\0" \
|
||||
"mmcload=" \
|
||||
"mmc rescan ; " \
|
||||
"ext4load mmc 0:2 ${kernel_addr_r} ${bootfile}\0" \
|
||||
"load mmc 0:2 ${kernel_addr_r} ${bootfile}\0" \
|
||||
"ubiload=" \
|
||||
"ubi part UBI ; ubifsmount ubi0:rootfs ; " \
|
||||
"ubifsload ${kernel_addr_r} /boot/${bootfile}\0" \
|
||||
|
@ -280,7 +281,7 @@
|
|||
"try_bootscript=" \
|
||||
"mmc rescan;" \
|
||||
"if test -e mmc 0:2 ${bootscript} ; then " \
|
||||
"if ext4load mmc 0:2 ${kernel_addr_r} ${bootscript};" \
|
||||
"if load mmc 0:2 ${kernel_addr_r} ${bootscript};" \
|
||||
"then;" \
|
||||
"\techo Running bootscript...;" \
|
||||
"\tsource ${kernel_addr_r};" \
|
||||
|
|
Loading…
Reference in a new issue