diff options
author | Karl Beldan <kbeldan@baylibre.com> | 2016-08-02 10:36:17 (GMT) |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2016-08-06 00:55:24 (GMT) |
commit | d03a0308599bb658598848e86aadb0d140f65e0c (patch) | |
tree | c246ef749bb04e0cfde450680504ae8abf604a48 | |
parent | 1b92aed253490736d1aabc88fcec21edc8aa55d0 (diff) | |
download | u-boot-fsl-qoriq-d03a0308599bb658598848e86aadb0d140f65e0c.tar.xz |
configs: Fix mmc rescan misuses
This follows 9fd383724cf4 ("mmc: don't allow extra cmdline arguments"),
and affects omapl138_lcdk and omap3_evm_quick_mmc.
Signed-off-by: Karl Beldan <kbeldan@baylibre.com>
Reviewed-by: Tom Rini <trini@konsulko.com>
-rw-r--r-- | include/configs/omapl138_lcdk.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/configs/omapl138_lcdk.h b/include/configs/omapl138_lcdk.h index 1f36d36..d00cf50 100644 --- a/include/configs/omapl138_lcdk.h +++ b/include/configs/omapl138_lcdk.h @@ -203,7 +203,7 @@ #define CONFIG_REVISION_TAG #define CONFIG_SETUP_MEMORY_TAGS #define CONFIG_BOOTARGS "console=ttyS2,115200n8 root=/dev/mmcblk0p2 rw rootwait ip=off" -#define CONFIG_BOOTCOMMAND "if mmc rescan 0; then if fatload mmc 0 0xc0600000 boot.scr; then source 0xc0600000; else fatload mmc 0 0xc0700000 uImage; bootm c0700000; fi; else sf probe 0; sf read 0xc0700000 0x80000 0x220000; bootm 0xc0700000; fi" +#define CONFIG_BOOTCOMMAND "if mmc rescan; then if fatload mmc 0 0xc0600000 boot.scr; then source 0xc0600000; else fatload mmc 0 0xc0700000 uImage; bootm c0700000; fi; else sf probe 0; sf read 0xc0700000 0x80000 0x220000; bootm 0xc0700000; fi" /* * U-Boot commands |