Skip to content
Snippets Groups Projects
Commit 4667c833 authored by Vagrant Cascadian's avatar Vagrant Cascadian Committed by Tom Rini
Browse files

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: default avatarVagrant Cascadian <vagrant@debian.org>
Acked-by: default avatarGrazvydas Ignotas <notasas@gmail.com>
parent f6eb836e
No related branches found
No related tags found
No related merge requests found
......@@ -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 && " \
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment