summaryrefslogtreecommitdiff
path: root/configs/smegw01_defconfig
diff options
context:
space:
mode:
authorEduard Strehlau <eduard@lionizers.com>2023-04-26 19:05:00 +0300
committerStefano Babic <sbabic@denx.de>2023-05-02 11:57:32 +0300
commitfd20052662b53fa75b4ed3f7832b4dfe35ec75c5 (patch)
treea0dafef5a4e470345ac0cb1ca9eee4d9385eeab5 /configs/smegw01_defconfig
parente13698bb669e70c511387051b62e025aabdc34af (diff)
downloadu-boot-fd20052662b53fa75b4ed3f7832b4dfe35ec75c5.tar.xz
smegw01: Fix fallback to altbootcmd
The bootcmd/altbootcmd mechanism is not invoked for bootmenus. Manually compare bootcount and bootlimit to implement fallback on all codepaths. Signed-off-by: Eduard Strehlau <eduard@lionizers.com> Signed-off-by: Fabio Estevam <festevam@denx.de>
Diffstat (limited to 'configs/smegw01_defconfig')
-rw-r--r--configs/smegw01_defconfig2
1 files changed, 1 insertions, 1 deletions
diff --git a/configs/smegw01_defconfig b/configs/smegw01_defconfig
index fe8152f33e..3d2713f528 100644
--- a/configs/smegw01_defconfig
+++ b/configs/smegw01_defconfig
@@ -23,7 +23,7 @@ CONFIG_AUTOBOOT_MENU_SHOW=y
# CONFIG_CMD_BOOTEFI_BOOTMGR is not set
CONFIG_BOOTMENU_DISABLE_UBOOT_CONSOLE=y
CONFIG_USE_BOOTCOMMAND=y
-CONFIG_BOOTCOMMAND="if test \"${ustate}\" = 1; then setenv upgrade_available 1; saveenv; fi; run mmcboot; "
+CONFIG_BOOTCOMMAND="if test \"${bootcount}\" -gt \"${bootlimit}\"; then run altbootcmd; else if test \"${ustate}\" = 1; then setenv upgrade_available 1; saveenv; fi; run mmcboot; fi;"
CONFIG_USE_PREBOOT=y
CONFIG_PREBOOT="run setup_boot_menu;"
CONFIG_HUSH_PARSER=y