forked from Ivasoft/openwrt
brcm47xx: rename target to bcm47xx
This change makes the names of Broadcom targets consistent by using the common notation based on SoC/CPU ID (which is used internally anyway), bcmXXXX instead of brcmXXXX. This is even used for target TITLE in make menuconfig already, only the short target name used brcm so far. Signed-off-by: Adrian Schmutzler <freifunk@adrianschmutzler.de>
This commit is contained in:
33
target/linux/bcm47xx/base-files/etc/init.d/wmacfixup
Executable file
33
target/linux/bcm47xx/base-files/etc/init.d/wmacfixup
Executable file
@@ -0,0 +1,33 @@
|
||||
#!/bin/sh /etc/rc.common
|
||||
# Copyright (C) 2010 OpenWrt.org
|
||||
|
||||
START=41
|
||||
|
||||
boot() {
|
||||
[ -d /sys/class/ieee80211 ] || exit
|
||||
|
||||
commit=0
|
||||
|
||||
fixup_wmac() {
|
||||
local cfg="$1"
|
||||
local cfmac
|
||||
|
||||
config_get cfmac "$cfg" macaddr
|
||||
|
||||
[ "$cfmac" != "00:90:4c:5f:00:2a" ] || {
|
||||
local nvmac="$(nvram get il0macaddr 2>/dev/null)"
|
||||
[ -n "$nvmac" ] && [ "$nvmac != "$cfmac ] && {
|
||||
uci set wireless.$cfg.macaddr="$nvmac"
|
||||
commit=1
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
config_load wireless
|
||||
config_foreach fixup_wmac wifi-device
|
||||
|
||||
[ "$commit" = 1 ] && uci commit wireless
|
||||
}
|
||||
|
||||
start() { :; }
|
||||
stop() { :; }
|
||||
Reference in New Issue
Block a user