diff options
author | Enric Balletbo i Serra <eballetbo@gmail.com> | 2013-08-07 17:53:18 +0200 |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2013-08-15 18:38:35 -0400 |
commit | 2be6bed003e20e0049d245b1447277cafbb30a72 (patch) | |
tree | a5539f62fdce8d0aadec3d33b6e2f536fec7e741 /include/configs/igep00x0.h | |
parent | 0474fb0e2b22a831cf47848b21bdb3e152c108bc (diff) | |
download | u-boot-imx-2be6bed003e20e0049d245b1447277cafbb30a72.zip u-boot-imx-2be6bed003e20e0049d245b1447277cafbb30a72.tar.gz u-boot-imx-2be6bed003e20e0049d245b1447277cafbb30a72.tar.bz2 |
ARM: igep00x0.h: Enable the use of CMD_EXT4, CMD_FS_GENERIC and zImage.
Able to load the kernel from some form of ext[234] or FAT. Also, with v3.9 and
later of the Linux Kernel, uImage isn't builtable anymore by default, so we
should switch to use the bootz command.
Signed-off-by: Enric Balletbo i Serra <eballetbo@gmail.com>
Diffstat (limited to 'include/configs/igep00x0.h')
-rw-r--r-- | include/configs/igep00x0.h | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/include/configs/igep00x0.h b/include/configs/igep00x0.h index a2e70ff..a555e5a 100644 --- a/include/configs/igep00x0.h +++ b/include/configs/igep00x0.h @@ -98,8 +98,9 @@ #include <config_cmd_default.h> #define CONFIG_CMD_CACHE -#define CONFIG_CMD_EXT2 /* EXT2 Support */ +#define CONFIG_CMD_EXT4 #define CONFIG_CMD_FAT /* FAT support */ +#define CONFIG_CMD_FS_GENERIC #define CONFIG_CMD_I2C /* I2C serial bus support */ #define CONFIG_CMD_MMC /* MMC support */ #ifdef CONFIG_BOOT_ONENAND @@ -164,17 +165,17 @@ "omapdss.def_disp=${defaultdisplay} " \ "root=${nandroot} " \ "rootfstype=${nandrootfstype}\0" \ - "loadbootenv=fatload mmc ${mmcdev} ${loadaddr} uEnv.txt\0" \ + "loadbootenv=load mmc ${mmcdev} ${loadaddr} uEnv.txt\0" \ "importbootenv=echo Importing environment from mmc ...; " \ "env import -t $loadaddr $filesize\0" \ - "loaduimage=fatload mmc ${mmcdev} ${loadaddr} uImage\0" \ + "loadzimage=load mmc ${mmcdev} ${loadaddr} zImage\0" \ "mmcboot=echo Booting from mmc ...; " \ "run mmcargs; " \ - "bootm ${loadaddr}\0" \ + "bootz ${loadaddr}\0" \ "nandboot=echo Booting from onenand ...; " \ "run nandargs; " \ "onenand read ${loadaddr} 280000 400000; " \ - "bootm ${loadaddr}\0" \ + "bootz ${loadaddr}\0" \ #define CONFIG_BOOTCOMMAND \ "mmc dev ${mmcdev}; if mmc rescan; then " \ @@ -186,7 +187,7 @@ "echo Running uenvcmd ...;" \ "run uenvcmd;" \ "fi;" \ - "if run loaduimage; then " \ + "if run loadzimage; then " \ "run mmcboot;" \ "fi;" \ "fi;" \ |