projects
/
openwrt.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
fix typo from last sysupgrade commit
[openwrt.git]
/
package
/
base-files
/
files
/
sbin
/
sysupgrade
diff --git
a/package/base-files/files/sbin/sysupgrade
b/package/base-files/files/sbin/sysupgrade
index
2805c31
..
2230e5b
100755
(executable)
--- a/
package/base-files/files/sbin/sysupgrade
+++ b/
package/base-files/files/sbin/sysupgrade
@@
-7,13
+7,16
@@
RAMFS_COPY_DATA="" # extra data files
export INTERACTIVE=0
export VERBOSE=1
export SAVE_CONFIG=1
export INTERACTIVE=0
export VERBOSE=1
export SAVE_CONFIG=1
+export DELAY=
# parse options
while [ -n "$1" ]; do
case "$1" in
-i) export INTERACTIVE=1;;
# parse options
while [ -n "$1" ]; do
case "$1" in
-i) export INTERACTIVE=1;;
+ -d) export DELAY="$2"; shift;;
-v) export VERBOSE="$(($VERBOSE + 1))";;
-q) export VERBOSE="$(($VERBOSE - 1))";;
-v) export VERBOSE="$(($VERBOSE + 1))";;
-q) export VERBOSE="$(($VERBOSE - 1))";;
+ -n) export SAVE_CONFIG=0;;
-*)
echo "Invalid option: $1"
exit 1
-*)
echo "Invalid option: $1"
exit 1
@@
-34,9
+37,11
@@
export ARGC="$#"
Usage: $0 [options] <image file or URL>
Options:
Usage: $0 [options] <image file or URL>
Options:
- -i interactive mode
- -v more verbose
- -q less verbose
+ -d <delay> add a delay before rebooting
+ -i interactive mode
+ -n do not save configuration over reflash
+ -q less verbose
+ -v more verbose
EOF
exit 1
EOF
exit 1
@@
-44,7
+49,7
@@
EOF
add_uci_conffiles() {
local file="$1"
add_uci_conffiles() {
local file="$1"
- find /etc/config > "$file"
+ find /etc/config
/etc/passwd /etc/group /etc/dropbear /etc/firewall.user
> "$file"
return 0
}
return 0
}
This page took
0.025404 seconds
and
4
git commands to generate.