remove update file and reboot in normal mode when update file is corrupted

Signed-off-by: Michel-FK <michel.stempin@funkey-project.com>
This commit is contained in:
Michel-FK 2021-04-13 18:38:30 +02:00
parent e6d932c8c7
commit 320c699689
2 changed files with 6 additions and 4 deletions

View File

@ -18,8 +18,8 @@ case "$1" in
for file in ${updates} ; do
swupdate -i "${file}"
if [ $? -ne 0 ]; then
menu &
exit 1
notif_disp 10 " CORRUPTED^ UPDATE FILE"
rm -f "${file}"
fi
done
notif "^^^^^^^^ RESTARTING...^^^^^^^^"

View File

@ -139,8 +139,10 @@ menu_run () {
for file in $(ls /mnt/FunKey-*.fwu); do
swupdate -i "${file}"
if [ $? -ne 0 ]; then
notif "${message}...^CANNOT UPDATE!"
break
notif_disp 10 "${message}...^ CORRUPTED^ UPDATE FILE"
rm -f "${file}"
notif "^^^^^^^^ RESTARTING...^^^^^^^^"
normal_mode
fi
done
message=" USB MOUNT"