mirror of
https://github.com/outbackdingo/firmware.git
synced 2026-01-28 10:18:58 +00:00
12 lines
114 B
Bash
Executable File
12 lines
114 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# OpenIPC.org | v.20220528
|
|
|
|
set -e
|
|
|
|
if [ "$1" = "-s" ]; then
|
|
sysupgrade -n -x
|
|
else
|
|
sysupgrade -n
|
|
fi
|