summaryrefslogtreecommitdiffstats
path: root/target/linux/ramips/base-files/lib/preinit
diff options
context:
space:
mode:
authorGabor Juhos <juhosg@openwrt.org>2012-12-24 06:52:41 +0000
committerGabor Juhos <juhosg@openwrt.org>2012-12-24 06:52:41 +0000
commit69da894432ca62575aaa851f4a0e915a57a82506 (patch)
treeb397adf91a23825a2e5500d6a18c58f33b172857 /target/linux/ramips/base-files/lib/preinit
parentc5a36f13f0ec711a2edc4e78f4a70f470f19a3b6 (diff)
downloadmaster-31e0f0ae-69da894432ca62575aaa851f4a0e915a57a82506.tar.gz
master-31e0f0ae-69da894432ca62575aaa851f4a0e915a57a82506.tar.bz2
master-31e0f0ae-69da894432ca62575aaa851f4a0e915a57a82506.zip
ramips: fix ASUS WL-330N3G MAC address
The ASUS WL-330N and WL-330N3G has the MAC address stored at offset 4, not 40. This is verified by reading original ASUS firmware GPL_WL-330N3G_source.1028/user/rc/common_ex.c and GPL_WL-330N_source.1021/user/rc/common_ex.c. Tested on WL-330N3G, it now gets the same MAC as is printed on the label on the router. Signed-off-by: Jan Kardell <jan.kardell@arkub.com> Signed-off-by: Gabor Juhos <juhosg@openwrt.org> SVN-Revision: 34877
Diffstat (limited to 'target/linux/ramips/base-files/lib/preinit')
-rw-r--r--target/linux/ramips/base-files/lib/preinit/06_set_iface_mac6
1 files changed, 3 insertions, 3 deletions
diff --git a/target/linux/ramips/base-files/lib/preinit/06_set_iface_mac b/target/linux/ramips/base-files/lib/preinit/06_set_iface_mac
index b04ec7744c..7e2bac4547 100644
--- a/target/linux/ramips/base-files/lib/preinit/06_set_iface_mac
+++ b/target/linux/ramips/base-files/lib/preinit/06_set_iface_mac
@@ -8,7 +8,9 @@ preinit_set_mac_address() {
. /lib/ramips.sh
case $(ramips_board_name) in
- 3g-6200n)
+ 3g-6200n |\
+ wl-330n |\
+ wl-330n3g)
mac=$(ramips_get_mac_binary factory 4)
ifconfig eth0 hw ether $mac 2>/dev/null
;;
@@ -54,8 +56,6 @@ preinit_set_mac_address() {
tew-692gr |\
w306r-v20 |\
w502u |\
- wl-330n |\
- wl-330n3g |\
wr6202 |\
xdxrn502j)
mac=$(ramips_get_mac_binary factory 40)