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.
16 lines
264 B
Plaintext
16 lines
264 B
Plaintext
4 years ago
|
#!/bin/sh
|
||
|
. $MIGTEST/lib/migration/migration.sh
|
||
|
|
||
|
$LOG_TOOL "upgrade from v2.3.0 to v3.1.0"
|
||
|
|
||
|
. /lib/functions.sh
|
||
|
|
||
|
. /lib/ar71xx.sh
|
||
|
BOARD=$(ar71xx_board_name)
|
||
|
[ "$BOARD" = "dlan-pro-1200-ac" ] && (
|
||
|
. /lib/migration/plc-pib.sh
|
||
|
migrate_pib_wifiac_1u
|
||
|
)
|
||
|
|
||
|
exit 0
|