diff --git a/general/overlay/usr/sbin/sysupgrade b/general/overlay/usr/sbin/sysupgrade index 10883c7d..1629e1b7 100755 --- a/general/overlay/usr/sbin/sysupgrade +++ b/general/overlay/usr/sbin/sysupgrade @@ -108,9 +108,9 @@ free_resources() { self_update() { 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 operations." else - echo -e "\nOnline upgrade, checking sysupgrade version..." + echo -e "\nChecking for sysupgrade update..." curl -s -k -L -o /tmp/sysupgrade "https://raw.githubusercontent.com/OpenIPC/firmware/master/general/overlay/usr/sbin/sysupgrade" if [ -f /tmp/sysupgrade ] && grep -q "#!/bin/sh" /tmp/sysupgrade; then dstv=$(grep scr_version /tmp/sysupgrade | head -1 | cut -f 2 -d '=') @@ -121,10 +121,10 @@ self_update() { exec /tmp/sysupgrade ${args} exit 1 else - echo "Ok, version match." + echo "Same version. No update required." fi else - echo -e "\nVersion check failed. Possible network connection problem, script is corrupt or not found. Continue with bundled version." + echo -e "\nVersion checking failed, proceeding with the installed version." fi fi }