From: Imre Kaloz Date: Mon, 23 Feb 2015 10:33:19 +0000 (+0000) Subject: mvebu: set WRT1900AC WAN interface MAC address X-Git-Tag: reboot~4212 X-Git-Url: http://git.openwrt.org/?p=openwrt%2Fopenwrt.git;a=commitdiff_plain;h=0de48a0dd835b71323965261aa47925d29b6a44e;hp=5e7d00463338825a9f7b0faddd406dbe1841d958 mvebu: set WRT1900AC WAN interface MAC address Toggles the LA bit on the WAN interface. Signed-off-by: Claudio Leite Signed-off-by: Imre Kaloz SVN-Revision: 44508 --- diff --git a/target/linux/mvebu/base-files/lib/preinit/06_set_iface_mac b/target/linux/mvebu/base-files/lib/preinit/06_set_iface_mac index 30f1370b8f..2b64eda822 100644 --- a/target/linux/mvebu/base-files/lib/preinit/06_set_iface_mac +++ b/target/linux/mvebu/base-files/lib/preinit/06_set_iface_mac @@ -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 }