summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGuillaume GARDET <guillaume.gardet@free.fr>2014-09-05 15:32:46 +0200
committerTom Rini <trini@ti.com>2014-09-17 21:06:56 -0400
commit10226f2992da55b8427fa9b293bc16676327f34a (patch)
tree1e7592026bd60edc3f62423e5f60dcdc9c27da02
parent6c343825dd8852843ee7426c579cb55520ad2fc8 (diff)
downloadtalos-obmc-uboot-10226f2992da55b8427fa9b293bc16676327f34a.tar.gz
talos-obmc-uboot-10226f2992da55b8427fa9b293bc16676327f34a.zip
OMAP4: Use generic 'load' command instead of 'fatload' for 'loadbootscript' and 'loadbootenv' as already done for 'loadimage' and 'loaduimage'.
This patch uses generic 'load' command instead of 'fatload' for 'loadbootscript' and 'loadbootenv' as already done for 'loadimage' and 'loaduimage' for OMAP4 boards. This allows to use EXT partition instead of FAT, while keeping FAT compatibility. Signed-off-by: Guillaume GARDET <guillaume.gardet@free.fr> Cc: Tom Rini <trini@ti.com>
-rw-r--r--include/configs/ti_omap4_common.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/configs/ti_omap4_common.h b/include/configs/ti_omap4_common.h
index 8c7310c9a1..b0f199e3f4 100644
--- a/include/configs/ti_omap4_common.h
+++ b/include/configs/ti_omap4_common.h
@@ -101,10 +101,10 @@
"vram=${vram} " \
"root=${mmcroot} " \
"rootfstype=${mmcrootfstype}\0" \
- "loadbootscript=fatload mmc ${mmcdev} ${loadaddr} boot.scr\0" \
+ "loadbootscript=load mmc ${mmcdev} ${loadaddr} boot.scr\0" \
"bootscript=echo Running bootscript from mmc${mmcdev} ...; " \
"source ${loadaddr}\0" \
- "loadbootenv=fatload mmc ${mmcdev} ${loadaddr} uEnv.txt\0" \
+ "loadbootenv=load mmc ${mmcdev} ${loadaddr} uEnv.txt\0" \
"importbootenv=echo Importing environment from mmc${mmcdev} ...; " \
"env import -t ${loadaddr} ${filesize}\0" \
"loadimage=load mmc ${bootpart} ${loadaddr} ${bootdir}/${bootfile}\0" \
OpenPOWER on IntegriCloud