mirror of
https://git.openwrt.org/openwrt/openwrt.git
synced 2024-11-26 06:56:14 +00:00
48028cd102
Mass production units will get 16 assigned MAC addresses. This allows each phy to spawn up to 7 VAPs which will each have unique MAC without needing the private bit. Signed-off-by: John Crispin <john@phrozen.org>
17 lines
213 B
Plaintext
17 lines
213 B
Plaintext
. /lib/functions/uci-defaults.sh
|
|
|
|
board=$(board_name)
|
|
|
|
board_config_update
|
|
|
|
case $board in
|
|
openwrt,one)
|
|
ucidef_set_wireless_mac_count 2g 7
|
|
ucidef_set_wireless_mac_count 5g 7
|
|
;;
|
|
esac
|
|
|
|
board_config_flush
|
|
|
|
exit 0
|