1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-09-29 14:26:21 +03:00
openwrt-xburst/target/linux/lantiq/base-files/etc/uci-defaults/wps

17 lines
304 B
Plaintext
Raw Normal View History

. /lib/functions.sh
. /lib/functions/lantiq.sh
set_wps() {
uci set wireless.$1.wps_pushbutton=0
uci set wireless.$1.wps_device_name="OpenWrt - $(lantiq_board_name)"
}
board=$(lantiq_board_id)
case $board in
WBMR)
config_load wireless
config_foreach set_wps wifi-iface
uci commit wireless
;;
esac