aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/mvebu/base-files/lib/preinit/06_set_iface_mac
diff options
context:
space:
mode:
authorImre Kaloz <kaloz@openwrt.org>2015-04-16 09:54:39 +0000
committerImre Kaloz <kaloz@openwrt.org>2015-04-16 09:54:39 +0000
commit2705cda81389e84687fb0325d2bf6c8bc2756bee (patch)
tree43e62f4855251c4117b245bccebe1fb75534fa9e /target/linux/mvebu/base-files/lib/preinit/06_set_iface_mac
parent0926e4c22feb8b9f65d7fbf9deb880de031fd0a2 (diff)
downloadupstream-2705cda81389e84687fb0325d2bf6c8bc2756bee.tar.gz
upstream-2705cda81389e84687fb0325d2bf6c8bc2756bee.tar.bz2
upstream-2705cda81389e84687fb0325d2bf6c8bc2756bee.zip
mvebu: add support for the Linksys Caiman and Cobra
Signed-off-by: Imre Kaloz <kaloz@openwrt.org> SVN-Revision: 45456
Diffstat (limited to 'target/linux/mvebu/base-files/lib/preinit/06_set_iface_mac')
-rw-r--r--target/linux/mvebu/base-files/lib/preinit/06_set_iface_mac8
1 files changed, 7 insertions, 1 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 7b77bea27f..7217e93370 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
@@ -1,5 +1,5 @@
#
-# Copyright (C) 2014 OpenWrt.org
+# Copyright (C) 2014-2015 OpenWrt.org
#
preinit_set_mac_address() {
@@ -15,6 +15,12 @@ preinit_set_mac_address() {
ifconfig eth0 hw ether $mac 2>/dev/null
ifconfig eth1 hw ether $mac_wan 2>/dev/null
;;
+ armada-385-linksys-caiman|armada-385-linksys-cobra)
+ mac=$(mtd_get_mac_ascii devinfo hw_mac_addr)
+ mac_wan=$(macaddr_setbit_la "$mac")
+ ifconfig eth1 hw ether $mac 2>/dev/null
+ ifconfig eth0 hw ether $mac_wan 2>/dev/null
+ ;;
esac
}