blob: 9850ed229379b32a2407921dc01a76309345cac6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
. /lib/functions.sh
. /lib/functions/migrations.sh
board=$(board_name)
case "$board" in
tplink,tl-wr802n-v1)
migrate_leds "blue:=green:"
;;
esac
remove_devicename_leds
migrations_apply system
exit 0
|