diff options
author | Travis Kemen <thepeople@openwrt.org> | 2008-09-26 00:10:01 +0000 |
---|---|---|
committer | Travis Kemen <thepeople@openwrt.org> | 2008-09-26 00:10:01 +0000 |
commit | 3770c99cf86932ecc738f9f7d27e1b7184b29dfe (patch) | |
tree | 9eca625dfecc620521006c3c48d14f856da37840 /package | |
parent | 2e91cf283b1a3c8477f242040d2687c2c685dc37 (diff) | |
download | upstream-3770c99cf86932ecc738f9f7d27e1b7184b29dfe.tar.gz upstream-3770c99cf86932ecc738f9f7d27e1b7184b29dfe.tar.bz2 upstream-3770c99cf86932ecc738f9f7d27e1b7184b29dfe.zip |
add switch to not save configuration over the reflash in noninteractive mode
SVN-Revision: 12714
Diffstat (limited to 'package')
-rwxr-xr-x | package/base-files/files/sbin/sysupgrade | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/package/base-files/files/sbin/sysupgrade b/package/base-files/files/sbin/sysupgrade index 432539a2f7..c647462341 100755 --- a/package/base-files/files/sbin/sysupgrade +++ b/package/base-files/files/sbin/sysupgrade @@ -16,6 +16,7 @@ while [ -n "$1" ]; do -d) export DELAY="$2"; shift;; -v) export VERBOSE="$(($VERBOSE + 1))";; -q) export VERBOSE="$(($VERBOSE - 1))";; + -n) export SAVE_CONFIG=0 -*) echo "Invalid option: $1" exit 1 @@ -38,6 +39,7 @@ Usage: $0 [options] <image file or URL> Options: -d <delay> add a delay before rebooting -i interactive mode + -n do not save configuration over reflash -q less verbose -v more verbose |