From 2bf9ea6a31736db059aa97addce3a34b933dacc1 Mon Sep 17 00:00:00 2001 From: Felix Fietkau Date: Mon, 6 Feb 2017 11:46:48 +0100 Subject: mvebu: add linux 4.9 support Signed-off-by: Felix Fietkau Signed-off-by: Jonas Gorski --- .../mvebu/base-files/lib/preinit/06_set_iface_mac | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) (limited to 'target/linux/mvebu/base-files/lib/preinit') 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 3e870e8b84..ae34ef49da 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 @@ -16,11 +16,31 @@ preinit_set_mac_address() { ifconfig eth1 hw ether $mac 2>/dev/null ;; armada-385-linksys-caiman|armada-385-linksys-cobra|armada-385-linksys-rango|armada-385-linksys-shelby) + # rename interfaces back to the way they were with 4.4 + case "$(readlink /sys/class/net/eth0)" in + *f1070000*) + ip link set eth0 name tmp0 + ip link set eth1 name eth0 + ip link set tmp0 name eth1 + ;; + esac + 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 ;; + armada-385-db-ap|armada-388-clearfog) + # rename interfaces back to the way they were with 4.4 + case "$(readlink /sys/class/net/eth0)" in + *f1070000*) + ip link set eth0 name tmp0 + ip link set eth1 name eth0 + ip link set eth2 name eth1 + ip link set tmp0 name eth2 + ;; + esac + ;; esac } -- cgit v1.2.3