diff options
author | Felix Fietkau <nbd@openwrt.org> | 2010-06-26 20:41:49 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2010-06-26 20:41:49 +0000 |
commit | 812f02632308229c2ed9ee56bc11adba2e3c365a (patch) | |
tree | 379da06c21f4742ad1f7bb84d24fa7960188024d /target/linux/brcm47xx/base-files/etc/init.d/wmacfixup | |
parent | 519b6a2f4c652a59df4fd0dacab6875976dc75bc (diff) | |
download | mtk-20170518-812f02632308229c2ed9ee56bc11adba2e3c365a.zip mtk-20170518-812f02632308229c2ed9ee56bc11adba2e3c365a.tar.gz mtk-20170518-812f02632308229c2ed9ee56bc11adba2e3c365a.tar.bz2 |
add back the base-files/image code from brcm-2.4 to brcm47xx
SVN-Revision: 21945
Diffstat (limited to 'target/linux/brcm47xx/base-files/etc/init.d/wmacfixup')
-rwxr-xr-x | target/linux/brcm47xx/base-files/etc/init.d/wmacfixup | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/target/linux/brcm47xx/base-files/etc/init.d/wmacfixup b/target/linux/brcm47xx/base-files/etc/init.d/wmacfixup new file mode 100755 index 0000000..ee1b752 --- /dev/null +++ b/target/linux/brcm47xx/base-files/etc/init.d/wmacfixup @@ -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() { :; } |