aboutsummaryrefslogtreecommitdiffstats
path: root/package/base-files/files/sbin
diff options
context:
space:
mode:
authorVasilis Tsiligiannis <b_tsiligiannis@silverton.gr>2009-06-10 22:22:48 +0000
committerVasilis Tsiligiannis <b_tsiligiannis@silverton.gr>2009-06-10 22:22:48 +0000
commitef3d91790c3459f2a79a5d6a56cc9ca23992862e (patch)
tree71b3dfa11315dc3c8f5f1c094a9a14cd7cf1a287 /package/base-files/files/sbin
parenta2b513da764ea7efad3eeedffa440deb5116b337 (diff)
downloadupstream-ef3d91790c3459f2a79a5d6a56cc9ca23992862e.tar.gz
upstream-ef3d91790c3459f2a79a5d6a56cc9ca23992862e.tar.bz2
upstream-ef3d91790c3459f2a79a5d6a56cc9ca23992862e.zip
[package] base-files: Detect and decompressed gzipped images automatically when flashing with sysupgrade
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@16407 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/base-files/files/sbin')
-rwxr-xr-xpackage/base-files/files/sbin/sysupgrade5
1 files changed, 1 insertions, 4 deletions
diff --git a/package/base-files/files/sbin/sysupgrade b/package/base-files/files/sbin/sysupgrade
index ecc5e9a708..f25195a520 100755
--- a/package/base-files/files/sbin/sysupgrade
+++ b/package/base-files/files/sbin/sysupgrade
@@ -9,7 +9,6 @@ export VERBOSE=1
export SAVE_CONFIG=1
export DELAY=
export CONF_IMAGE=
-export GZIPED=0
# parse options
while [ -n "$1" ]; do
case "$1" in
@@ -19,7 +18,6 @@ while [ -n "$1" ]; do
-q) export VERBOSE="$(($VERBOSE - 1))";;
-n) export SAVE_CONFIG=0;;
-f) export CONF_IMAGE="$2"; shift;;
- -g) export GZIPED=1;;
-*)
echo "Invalid option: $1"
exit 1
@@ -42,7 +40,6 @@ Usage: $0 [options] <image file or URL>
Options:
-d <delay> add a delay before rebooting
-f <config> restore configuration from .tar.gz (file or url)
- -g gziped image
-i interactive mode
-n do not save configuration over reflash
-q less verbose
@@ -99,7 +96,7 @@ if [ -n "$CONF_IMAGE" ]; then
exit 1
;;
esac
- get_image "$CONF_IMAGE" > "$CONF_TAR"
+ get_image "$CONF_IMAGE" "cat" > "$CONF_TAR"
export SAVE_CONFIG=1
elif ask_bool $SAVE_CONFIG "Keep config files over reflash"; then
do_save_conffiles