summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEduard Strehlau <[email protected]>2023-04-26 13:04:52 -0300
committerStefano Babic <[email protected]>2023-05-02 10:57:32 +0200
commit440dc0694ba44ed8551f8809f76373f20800987f (patch)
tree53f1ac2b075e8c1a1793a51644891fa8a5083e6c
parentac52bb99cc7c9c288432f80710b21bd54e743f58 (diff)
smegw01: Run altbootcmd in the case of failure
Run the altbootcmd script if any step of bootcmd fails. This ensures that always a valid image can be run. Signed-off-by: Eduard Strehlau <[email protected]> Signed-off-by: Fabio Estevam <[email protected]>
-rw-r--r--configs/smegw01_defconfig2
-rw-r--r--include/configs/smegw01.h8
2 files changed, 8 insertions, 2 deletions
diff --git a/configs/smegw01_defconfig b/configs/smegw01_defconfig
index 418151a6de0..b3580d5d6e5 100644
--- a/configs/smegw01_defconfig
+++ b/configs/smegw01_defconfig
@@ -18,7 +18,7 @@ CONFIG_SYS_MEMTEST_END=0xa0000000
CONFIG_FIT=y
CONFIG_FIT_VERBOSE=y
CONFIG_USE_BOOTCOMMAND=y
-CONFIG_BOOTCOMMAND="if test \"${ustate}\" = 1; then setenv upgrade_available 1; saveenv; fi; if run loadimage; then run mmcboot; fi; "
+CONFIG_BOOTCOMMAND="if test \"${ustate}\" = 1; then setenv upgrade_available 1; saveenv; fi; if run loadimage; then run mmcboot; else run altbootcmd; fi; "
CONFIG_HUSH_PARSER=y
CONFIG_SYS_MAXARGS=32
CONFIG_SYS_PBSIZE=532
diff --git a/include/configs/smegw01.h b/include/configs/smegw01.h
index 6ee4acc70d2..05edaac42f8 100644
--- a/include/configs/smegw01.h
+++ b/include/configs/smegw01.h
@@ -39,7 +39,13 @@
"mmcboot=echo Booting from mmc ...; " \
"run mmcargs; " \
"if run loadfdt; then " \
- "bootz ${loadaddr} - ${fdt_addr}; " \
+ "if bootz ${loadaddr} - ${fdt_addr}; then " \
+ "; " \
+ "else " \
+ "run altbootcmd; " \
+ "fi;" \
+ "else " \
+ "run altbootcmd; " \
"fi;\0" \
"altbootcmd=echo Performing rollback...; " \
"if test \"${mmcpart}\" = 1; then " \