You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

36 lines
638 B

#!/bin/sh
. /lib/functions.sh
. /lib/functions/migrations.sh
board=$(board_name)
boardonly="${board##*,}"
case "$board" in
engenius,epg5000)
migrate_leds ":wlan-2g=:wlan2g" ":wlan-5g=:wlan5g"
;;
tplink,archer-c25-v1|\
tplink,archer-c58-v1|\
tplink,archer-c59-v1|\
tplink,archer-c7-v4|\
tplink,archer-c7-v5|\
tplink,tl-wr802n-v2)
migrate_leds "^$boardonly:=tp-link:"
;;
tplink,archer-c7-v2|\
tplink,tl-wdr3600-v1|\
tplink,tl-wdr4300-v1|\
tplink,tl-wdr4300-v1-il|\
tplink,tl-wdr4310-v1|\
tplink,tl-wr802n-v1)
migrate_leds ":blue:=:green:"
;;
wd,mynet-n750)
migrate_leds "wd:=mynet-n750:"
;;
esac
migrations_apply system
exit 0