summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2015-03-20 09:37:07 +0000
committerFelix Fietkau <nbd@openwrt.org>2015-03-20 09:37:07 +0000
commit975e1357e6136ab5126e8d079e80bdcde338f8a6 (patch)
tree5c8021d855246e91c953b1b34c89e1d8dccd1fc4
parent1773aa5163cc3039ae29f3261d84f98c14836937 (diff)
downloadmaster-31e0f0ae-975e1357e6136ab5126e8d079e80bdcde338f8a6.tar.gz
master-31e0f0ae-975e1357e6136ab5126e8d079e80bdcde338f8a6.tar.bz2
master-31e0f0ae-975e1357e6136ab5126e8d079e80bdcde338f8a6.zip
ramips: fix LAN/WAN MAC address for WSR-600/1166
Signed-off-by: Felix Fietkau <nbd@openwrt.org> SVN-Revision: 44903
-rwxr-xr-xtarget/linux/ramips/base-files/etc/board.d/02_network9
1 files changed, 9 insertions, 0 deletions
diff --git a/target/linux/ramips/base-files/etc/board.d/02_network b/target/linux/ramips/base-files/etc/board.d/02_network
index 7e9d8c984b..89d1681062 100755
--- a/target/linux/ramips/base-files/etc/board.d/02_network
+++ b/target/linux/ramips/base-files/etc/board.d/02_network
@@ -347,6 +347,15 @@ ramips_setup_macs()
wan_mac=$(mtd_get_mac_binary factory 46)
;;
+ wsr-600)
+ wan_mac=$(mtd_get_mac_binary factory 4)
+ lan_mac=$wan_mac
+ ;;
+ wsr-1166)
+ local index="$(find_mtd_index "board_data")"
+ wan_mac="$(grep -m1 mac= "/dev/mtd${index}" | cut -d= -f2)"
+ lan_mac=$wan_mac
+ ;;
*)
lan_mac=$(cat /sys/class/net/eth0/address)
wan_mac=$(macaddr_add "$lan_mac" 1)