diff options
author | Imre Kaloz <kaloz@openwrt.org> | 2015-08-21 08:10:48 +0000 |
---|---|---|
committer | Imre Kaloz <kaloz@openwrt.org> | 2015-08-21 08:10:48 +0000 |
commit | 87a70e07740eb9679d0cff64e2e323b674addc7a (patch) | |
tree | e3bab7734f7d8f533458c42a1f7c4681ba98a826 /target/linux/mvebu/base-files/lib | |
parent | 9cca6c5ad90330115ad3e550abf515c029e931fa (diff) | |
download | upstream-87a70e07740eb9679d0cff64e2e323b674addc7a.tar.gz upstream-87a70e07740eb9679d0cff64e2e323b674addc7a.tar.bz2 upstream-87a70e07740eb9679d0cff64e2e323b674addc7a.zip |
This had been set in r44508 as a workaround for switch problems.
Now that the switch driver can handle two devices with
the same MAC address in separate VLANs we can go back
to using the same address on both interfaces.
This is the Linksys firmware's default behavior.
Signed-off-by: Claudio Leite <leitec@staticky.com>
Signed-off-by: Imre Kaloz <kaloz@openwrt.org>
SVN-Revision: 46700
Diffstat (limited to 'target/linux/mvebu/base-files/lib')
-rw-r--r-- | target/linux/mvebu/base-files/lib/preinit/06_set_iface_mac | 3 |
1 files changed, 1 insertions, 2 deletions
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 7217e93370..9fc8d9a0ce 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,9 +11,8 @@ preinit_set_mac_address() { case $(mvebu_board_name) in armada-xp-linksys-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_wan 2>/dev/null + ifconfig eth1 hw ether $mac 2>/dev/null ;; armada-385-linksys-caiman|armada-385-linksys-cobra) mac=$(mtd_get_mac_ascii devinfo hw_mac_addr) |