summaryrefslogtreecommitdiff
path: root/include/configs/tao3530.h
diff options
context:
space:
mode:
authorJarkko Nikula <jarkko.nikula@bitmer.com>2019-09-30 20:42:21 +0300
committerTom Rini <trini@konsulko.com>2019-10-11 20:32:39 +0300
commit2fff0e96a6ed4bb464f3ef7c2e3628ddf2d988d0 (patch)
treee0e7f32b82b9ecbd685271fe8e7bb7f56e568ac2 /include/configs/tao3530.h
parent6685d2e26e971e6ffb0d4d2a323b66c5eb3758a9 (diff)
downloadu-boot-2fff0e96a6ed4bb464f3ef7c2e3628ddf2d988d0.tar.xz
tao3530: Fix usage of mmc rescan
Currently "bootcmd" does not work as intended but instead prints MMC usage information and goes directly to "nandboot". Follow what the commit 669681104daa ("configs: Fix usage of mmc rescan") does for other boards prior to support for TechNexion TAO3530 SoM was added. Signed-off-by: Jarkko Nikula <jarkko.nikula@bitmer.com>
Diffstat (limited to 'include/configs/tao3530.h')
-rw-r--r--include/configs/tao3530.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/configs/tao3530.h b/include/configs/tao3530.h
index c34e785d9e..7a54fe3e1e 100644
--- a/include/configs/tao3530.h
+++ b/include/configs/tao3530.h
@@ -114,7 +114,7 @@
"bootm ${loadaddr}\0" \
#define CONFIG_BOOTCOMMAND \
- "if mmc rescan ${mmcdev}; then " \
+ "mmc dev ${mmcdev}; if mmc rescan; then " \
"if run loadbootscript; then " \
"run bootscript; " \
"else " \