Skip to content

Commit

Permalink
[no ci] sysupgrade: add force_all shortcut (#1666)
Browse files Browse the repository at this point in the history
  • Loading branch information
viktorxda authored Jan 18, 2025
1 parent 04eb4e5 commit a74178c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions general/overlay/usr/sbin/sysupgrade
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# OpenIPC.org | 2024
#

scr_version=1.0.42
scr_version=1.0.43

args=" $@"

Expand Down Expand Up @@ -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.
Expand All @@ -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
Expand Down

0 comments on commit a74178c

Please sign in to comment.