mvebu: add support for the Linksys Caiman and Cobra
[openwrt/openwrt.git] / target / linux / mvebu / base-files / lib / preinit / 06_set_iface_mac
index 7b77bea27f33f96f5d9567b7d1e4032f69bebd1e..7217e93370ccf6e8b4694b3630b29d5b8d66672a 100644 (file)
@@ -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
 }