1
0
mirror of https://git.openwrt.org/openwrt/openwrt.git synced 2024-10-18 21:48:23 +02:00

mvebu: set WRT1900AC WAN interface MAC address

Toggles the LA bit on the WAN interface.

Signed-off-by: Claudio Leite <leitec@staticky.com>
Signed-off-by: Imre Kaloz <kaloz@openwrt.org>

SVN-Revision: 44508
This commit is contained in:
Imre Kaloz 2015-02-23 10:33:19 +00:00
parent 5e7d004633
commit 0de48a0dd8

@ -11,8 +11,9 @@ preinit_set_mac_address() {
case $(mvebu_board_name) in
armada-xp-mamba)
mac=$(mtd_get_mac_ascii devinfo hw_mac_addr)
mac_wan=$(macaddr_setbit_la "$mac")
ifconfig eth0 hw ether $mac 2>/dev/null
ifconfig eth1 hw ether $mac 2>/dev/null
ifconfig eth1 hw ether $mac_wan 2>/dev/null
;;
esac
}