From: Vagrant Cascadian Date: Mon, 29 Aug 2016 07:56:06 +0000 (-0700) Subject: omap3_pandora: Switch to using "load" command to load the autoboot script. X-Git-Tag: v2016.09~26 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=4667c83365fd2426c08c2a55fe4b6682ae0bd6b3;p=platform%2Fkernel%2Fu-boot.git 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 Acked-by: Grazvydas Ignotas --- diff --git a/include/configs/omap3_pandora.h b/include/configs/omap3_pandora.h index 86edf19..728a4e5 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 && " \