diff options
| author | Vagrant Cascadian <[email protected]> | 2016-08-29 00:56:06 -0700 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2016-09-06 13:41:43 -0400 |
| commit | 4667c83365fd2426c08c2a55fe4b6682ae0bd6b3 (patch) | |
| tree | aca62b19aeef8225dede850888c1b185feb51754 | |
| parent | f6eb836e8411daecfa68d410d69832f54f31a985 (diff) | |
omap3_pandora: Switch to using "load" command to load the autoboot script.
CONFIG_CMD_FS_GENERIC is enabled; use it to load the autoboot script,
rather than first attempting with fatload and falling back to
ext2load.
Signed-off-by: Vagrant Cascadian <[email protected]>
Acked-by: Grazvydas Ignotas <[email protected]>
| -rw-r--r-- | include/configs/omap3_pandora.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/include/configs/omap3_pandora.h b/include/configs/omap3_pandora.h index 86edf198f5a..728a4e57318 100644 --- a/include/configs/omap3_pandora.h +++ b/include/configs/omap3_pandora.h @@ -93,8 +93,7 @@ "mtdparts=" MTDPARTS_DEFAULT "\0" \ #define CONFIG_BOOTCOMMAND \ - "if mmc rescan && fatload mmc 0:1 ${loadaddr} autoboot.scr || " \ - "ext2load mmc 0:1 ${loadaddr} autoboot.scr; then " \ + "if mmc rescan && load mmc 0:1 ${loadaddr} autoboot.scr; then " \ "source ${loadaddr}; " \ "fi; " \ "ubi part boot && ubifsmount ubi:boot && " \ |
