aboutsummaryrefslogtreecommitdiff
path: root/board/storopack
diff options
context:
space:
mode:
authorEduard Strehlau2023-09-25 13:32:59 -0300
committerTom Rini2023-09-28 16:31:43 -0400
commitfa5bde37606356400483cf0c9454cb2eea66264e (patch)
tree4d055d1ca4a03192306bf1d1b9f426d930bdbc9c /board/storopack
parent7ebbce535c774806b3db0bedd2ba3cfb95c07658 (diff)
smegw01: Fix inverted CONFIG_SYS_BOOT_LOCKED logic
CONFIG_SYS_BOOT_LOCKED means that a restricted boot environment will be used. In this case, hab_auth_img_or_fail should be called to prevent U-Boot to continue running when the fitImage authentication fails. Fix the logic accordingly. Additionally, select CONFIG_SYS_BOOT_LOCKED by default. Signed-off-by: Eduard Strehlau <eduard@lionizers.com> Signed-off-by: Fabio Estevam <festevam@denx.de>
Diffstat (limited to 'board/storopack')
-rw-r--r--board/storopack/smegw01/smegw01.env4
1 files changed, 2 insertions, 2 deletions
diff --git a/board/storopack/smegw01/smegw01.env b/board/storopack/smegw01/smegw01.env
index 528310dd810..93de8669109 100644
--- a/board/storopack/smegw01/smegw01.env
+++ b/board/storopack/smegw01/smegw01.env
@@ -67,9 +67,9 @@ mmcboot=
run altbootcmd;
fi;
#ifdef CONFIG_SYS_BOOT_LOCKED
- hab_auth_img ${fileaddr} ${filesize};
-#else
hab_auth_img_or_fail ${fileaddr} ${filesize};
+#else
+ hab_auth_img ${fileaddr} ${filesize};
#endif
run mmcargs;
if bootm; then