From: Koen Kooi <koen@dominion.thruhere.net> Date: Fri, 17 Jun 2011 07:33:03 +0000 (+0200) Subject: BeagleBoard: config: load kernel from MMC ext, not FAT X-Git-Tag: v2025.01-rc5-pxa1908~19109^2~21 X-Git-Url: http://git.dujemihanovic.xyz/html/static/%7B%7B%20%28.OutputFormats.Get?a=commitdiff_plain;h=e5549f0f8b34925e288445e2cb5dcc131a6b304f;p=u-boot.git BeagleBoard: config: load kernel from MMC ext, not FAT Signed-off-by: Koen Kooi <koen@dominion.thruhere.net> Signed-off-by: Joel A Fernandes <agnel.joel@gmail.com> Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com> --- diff --git a/include/configs/omap3_beagle.h b/include/configs/omap3_beagle.h index c87936498e..e46f7fbcb3 100644 --- a/include/configs/omap3_beagle.h +++ b/include/configs/omap3_beagle.h @@ -230,7 +230,8 @@ "loadbootenv=fatload mmc ${mmcdev} ${loadaddr} ${bootenv}\0" \ "importbootenv=echo Importing environment from mmc ...; " \ "env import -t $loadaddr $filesize\0" \ - "loaduimage=fatload mmc ${mmcdev} ${loadaddr} uImage\0" \ + "loaduimagefat=fatload mmc ${mmcdev} ${loadaddr} uImage\0" \ + "loaduimage=ext2load mmc ${mmcdev}:2 ${loadaddr} /boot/uImage\0" \ "mmcboot=echo Booting from mmc ...; " \ "run mmcargs; " \ "bootm ${loadaddr}\0" \