diff options
| author | Jo-Philipp Wich | 2010-04-10 14:29:01 +0000 |
|---|---|---|
| committer | Jo-Philipp Wich | 2010-04-10 14:29:01 +0000 |
| commit | 7a15db45d490ebb242436d853a47b972f1aee547 (patch) | |
| tree | f73d8c907ef233b329aa88ff4662e9bbd6e83e2c | |
| parent | d5be39d0b56998c1571d73d7a68e61451bf24686 (diff) | |
| download | archive-7a15db45d490ebb242436d853a47b972f1aee547.tar.gz | |
[brcm47xx] add script to fixup the wireless mac (#7102)
SVN-Revision: 20775
| -rwxr-xr-x | target/linux/brcm-2.4/base-files/etc/init.d/wmacfixup | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/target/linux/brcm-2.4/base-files/etc/init.d/wmacfixup b/target/linux/brcm-2.4/base-files/etc/init.d/wmacfixup new file mode 100755 index 0000000000..ee1b752201 --- /dev/null +++ b/target/linux/brcm-2.4/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() { :; } |