ramips: use rootfs splitter and new image build code for BR-6475ND
[openwrt/openwrt.git] / target / linux / ramips / base-files / etc / uci-defaults / 03_wireless
1 #!/bin/sh
2 #
3 # Copyright (C) 2016 OpenWrt.org
4 #
5
6 [ ! -e /etc/config/wireless ] && exit 0
7
8 . /lib/functions/system.sh
9 . /lib/ramips.sh
10
11 board=$(ramips_board_name)
12
13 case "$board" in
14 dch-m225)
15 uci set wireless.@wifi-device[0].disabled=0
16 ;;
17 esac
18
19 uci commit wireless
20
21 exit 0