diff options
author | Guillaume GARDET <guillaume.gardet@free.fr> | 2014-08-26 12:05:31 +0200 |
---|---|---|
committer | Stefano Babic <sbabic@denx.de> | 2014-09-09 16:58:06 +0200 |
commit | 3ee96c7da9b76f7462c2fae89592f5bad110ea90 (patch) | |
tree | 2cc9cacca43600cbd9dc76a8bd08eac7596873c0 /include/configs/nitrogen6x.h | |
parent | f4fb5ef045e1c53fc92b34d53e58a3c2ebabd4e1 (diff) | |
download | u-boot-imx-3ee96c7da9b76f7462c2fae89592f5bad110ea90.zip u-boot-imx-3ee96c7da9b76f7462c2fae89592f5bad110ea90.tar.gz u-boot-imx-3ee96c7da9b76f7462c2fae89592f5bad110ea90.tar.bz2 |
imx: nitrogen6x: Replace 'fatload' by 'load' command in env settings to be filesystem independent
nitrogen6x.h file defines CONFIG_CMD_FS_GENERIC, so we are able to use generic
'load' command instead of 'fatload'. It allows to use ext filesystem and keep
compatibilty with fat filesystem.
Signed-off-by: Guillaume GARDET <guillaume.gardet@free.fr>
Cc: Stefano Babic <sbabic@denx.de>
Acked-By: Eric Nelson <eric.nelson@boundarydevices.com>
Diffstat (limited to 'include/configs/nitrogen6x.h')
-rw-r--r-- | include/configs/nitrogen6x.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/configs/nitrogen6x.h b/include/configs/nitrogen6x.h index b2b17ce..d4b0ac9 100644 --- a/include/configs/nitrogen6x.h +++ b/include/configs/nitrogen6x.h @@ -192,11 +192,11 @@ "mmcargs=setenv bootargs console=${console},${baudrate} " \ "root=${mmcroot}\0" \ "loadbootscript=" \ - "fatload mmc ${mmcdev}:${mmcpart} ${loadaddr} ${script};\0" \ + "load mmc ${mmcdev}:${mmcpart} ${loadaddr} ${script};\0" \ "bootscript=echo Running bootscript from mmc ...; " \ "source\0" \ - "loaduimage=fatload mmc ${mmcdev}:${mmcpart} ${loadaddr} ${uimage}\0" \ - "loadfdt=fatload mmc ${mmcdev}:${mmcpart} ${fdt_addr} ${fdt_file}\0" \ + "loaduimage=load mmc ${mmcdev}:${mmcpart} ${loadaddr} ${uimage}\0" \ + "loadfdt=load mmc ${mmcdev}:${mmcpart} ${fdt_addr} ${fdt_file}\0" \ "mmcboot=echo Booting from mmc ...; " \ "run mmcargs; " \ "if test ${boot_fdt} = yes || test ${boot_fdt} = try; then " \ |