ramips: fix LAN/WAN MAC address for WSR-600/1166

Signed-off-by: Felix Fietkau <nbd@openwrt.org>

SVN-Revision: 44903
This commit is contained in:
Felix Fietkau 2015-03-20 09:37:07 +00:00
parent 1773aa5163
commit 975e1357e6
1 changed files with 9 additions and 0 deletions

View File

@ -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)