소스 검색

OMAP3: Fix changed mmc init command

In recent U-Boot mmcinit changed to mmc init.

Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
Dirk Behme 16 년 전
부모
커밋
a85693b3bd
5개의 변경된 파일5개의 추가작업 그리고 5개의 파일을 삭제
  1. 1 1
      include/configs/omap3_beagle.h
  2. 1 1
      include/configs/omap3_evm.h
  3. 1 1
      include/configs/omap3_overo.h
  4. 1 1
      include/configs/omap3_pandora.h
  5. 1 1
      include/configs/omap3_zoom1.h

+ 1 - 1
include/configs/omap3_beagle.h

@@ -185,7 +185,7 @@
 		"bootm ${loadaddr}\0" \
 
 #define CONFIG_BOOTCOMMAND \
-	"if mmcinit; then " \
+	"if mmc init; then " \
 		"if run loadbootscript; then " \
 			"run bootscript; " \
 		"else " \

+ 1 - 1
include/configs/omap3_evm.h

@@ -178,7 +178,7 @@
 		"bootm ${loadaddr}\0" \
 
 #define CONFIG_BOOTCOMMAND \
-	"if mmcinit; then " \
+	"if mmc init; then " \
 		"if run loadbootscript; then " \
 			"run bootscript; " \
 		"else " \

+ 1 - 1
include/configs/omap3_overo.h

@@ -172,7 +172,7 @@
 		"bootm ${loadaddr}\0" \
 
 #define CONFIG_BOOTCOMMAND \
-	"if mmcinit; then " \
+	"if mmc init; then " \
 		"if run loadbootscript; then " \
 			"run bootscript; " \
 		"else " \

+ 1 - 1
include/configs/omap3_pandora.h

@@ -174,7 +174,7 @@
 		"bootm ${loadaddr}\0" \
 
 #define CONFIG_BOOTCOMMAND \
-	"if mmcinit; then " \
+	"if mmc init; then " \
 		"if run loadbootscript; then " \
 			"run bootscript; " \
 		"else " \

+ 1 - 1
include/configs/omap3_zoom1.h

@@ -182,7 +182,7 @@
 		"bootm ${loadaddr}\0" \
 
 #define CONFIG_BOOTCOMMAND \
-	"if mmcinit; then " \
+	"if mmc init; then " \
 		"if run loadbootscript; then " \
 			"run bootscript; " \
 		"else " \