You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
223 B
Plaintext
13 lines
223 B
Plaintext
4 years ago
|
#!/bin/sh
|
||
|
. $MIGTEST/lib/migration/migration.sh
|
||
|
. /lib/ar71xx.sh
|
||
|
|
||
|
$LOG_TOOL "upgrade from v5.0.1 to v5.0.2"
|
||
|
|
||
|
[ -f "/etc/config/tr069_upnp" ] && {
|
||
|
uci set tr069_upnp.upnp.loglevel="0"
|
||
|
uci commit tr069_upnp
|
||
|
}
|
||
|
|
||
|
exit 0
|