From a74178cbb9bc76c721afae762f85ac05426e0c02 Mon Sep 17 00:00:00 2001 From: viktorxda <35473052+viktorxda@users.noreply.github.com> Date: Sat, 18 Jan 2025 13:56:36 +0100 Subject: [PATCH] [no ci] sysupgrade: add force_all shortcut (#1666) --- general/overlay/usr/sbin/sysupgrade | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/general/overlay/usr/sbin/sysupgrade b/general/overlay/usr/sbin/sysupgrade index ab01fad4..2b0a3a9c 100755 --- a/general/overlay/usr/sbin/sysupgrade +++ b/general/overlay/usr/sbin/sysupgrade @@ -3,7 +3,7 @@ # OpenIPC.org | 2024 # -scr_version=1.0.42 +scr_version=1.0.43 args=" $@" @@ -229,7 +229,7 @@ Where: --force_md5 Do not validate MD5 hash. --force_soc Do not validate processor. --force_ver Do not validate release version. - --force_all Do not validate anything. + -f, --force_all Do not validate anything. -n, --wipe_overlay Wipe overlay partition. -x, --no_reboot Do not reboot after updating. -z, --no_update Do not update self. @@ -252,7 +252,7 @@ reboot_system() { for i in "$@"; do case $i in - --force_all) + -f | --force_all) skip_md5=1 skip_soc=1 skip_ver=1