ramips: split further base-files across subtargets
[openwrt/openwrt.git] / target / linux / ramips / rt305x / base-files / etc / uci-defaults / 04_led_migration
1 #!/bin/sh
2
3 . /lib/functions.sh
4 . /lib/functions/migrations.sh
5
6 board=$(board_name)
7
8 case "$board" in
9 fon,fonera-20n)
10 migrate_leds "^fonera20n:=fonera-20n:"
11 ;;
12 intenso,memory2move)
13 migrate_leds "^m2m:=memory2move:"
14 ;;
15 esac
16
17 migrations_apply system
18
19 exit 0