mirror of https://github.com/OpenIPC/firmware.git
sysupgrade: formatting
parent
b222a6cee8
commit
a4df723286
|
@ -652,7 +652,7 @@ xm550() {
|
||||||
# gk7205v210 # OpenIPC
|
# gk7205v210 # OpenIPC
|
||||||
# gk7205v300 # OpenIPC
|
# gk7205v300 # OpenIPC
|
||||||
# gk7205v300_ultimate # OpenIPC_ultimate version
|
# gk7205v300_ultimate # OpenIPC_ultimate version
|
||||||
# gk7205v300_fpv # FPV (ultimate by default)
|
gk7205v300_fpv # FPV (ultimate by default)
|
||||||
# gk7605v100 # testing..
|
# gk7605v100 # testing..
|
||||||
#
|
#
|
||||||
#######
|
#######
|
||||||
|
|
|
@ -111,27 +111,27 @@ free_resources() {
|
||||||
}
|
}
|
||||||
|
|
||||||
self_update() {
|
self_update() {
|
||||||
if echo "${args}" | grep "rootfs" || echo "${args}" | grep "kernel" || echo "${args}" | grep -- "-n" > /dev/null 2>&1; then
|
if echo "${args}" | grep "rootfs" || echo "${args}" | grep "kernel" || echo "${args}" | grep -- "-n" > /dev/null 2>&1; then
|
||||||
echo -e "\nOffline upgrade or Overlay clean, skip sysupgrade version check."
|
echo -e "\nOffline upgrade or Overlay clean, skip sysupgrade version check."
|
||||||
else
|
else
|
||||||
echo -e "\nOnline upgrade, checking sysupgrade version..."
|
echo -e "\nOnline upgrade, checking sysupgrade version..."
|
||||||
curl -s -k -L -o /tmp/sysupgrade "https://raw.githubusercontent.com/OpenIPC/firmware/master/general/overlay/usr/sbin/sysupgrade"
|
curl -s -k -L -o /tmp/sysupgrade "https://raw.githubusercontent.com/OpenIPC/firmware/master/general/overlay/usr/sbin/sysupgrade"
|
||||||
dstv=`grep scr_version /tmp/sysupgrade | head -1 | cut -f 2 -d '='`
|
dstv=`grep scr_version /tmp/sysupgrade | head -1 | cut -f 2 -d '='`
|
||||||
if ! [ "${scr_version}" = "${dstv}" ]; then
|
if ! [ "${scr_version}" = "${dstv}" ]; then
|
||||||
echo "A new version is available, trying to update..."
|
echo "A new version is available, trying to update..."
|
||||||
chmod +x /tmp/sysupgrade
|
chmod +x /tmp/sysupgrade
|
||||||
echo -e "Done. Restarting...\n"
|
echo -e "Done. Restarting...\n"
|
||||||
exec /tmp/sysupgrade ${args}
|
exec /tmp/sysupgrade ${args}
|
||||||
exit 1
|
exit 1
|
||||||
else
|
else
|
||||||
echo "Ok, version match."
|
echo "Ok, version match."
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
create_lock() {
|
create_lock() {
|
||||||
[ -f /tmp/sysupgrade.lock ] && echo -e "\e[1;31m\nAnother sysupgrade process is already running!\e[0m\n" && exit 1
|
[ -f /tmp/sysupgrade.lock ] && echo -e "\e[1;31m\nAnother sysupgrade process is already running!\e[0m\n" && exit 1
|
||||||
touch /tmp/sysupgrade.lock
|
touch /tmp/sysupgrade.lock
|
||||||
}
|
}
|
||||||
|
|
||||||
get_device() {
|
get_device() {
|
||||||
|
|
Loading…
Reference in New Issue