aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/mvebu
diff options
context:
space:
mode:
authorDENG Qingfang <dengqf6@mail2.sysu.edu.cn>2020-04-19 15:55:31 +0800
committerAdrian Schmutzler <freifunk@adrianschmutzler.de>2020-06-03 20:34:15 +0200
commitbe309bfd744525d2b52a61994238f1f0e3322a34 (patch)
treeecb76dbdcfc38018f6bdeb6e5d8921c119786aa0 /target/linux/mvebu
parent9b34ea4f62bb4c4ad16b791c24e905775f2a52fd (diff)
downloadupstream-be309bfd744525d2b52a61994238f1f0e3322a34.tar.gz
upstream-be309bfd744525d2b52a61994238f1f0e3322a34.tar.bz2
upstream-be309bfd744525d2b52a61994238f1f0e3322a34.zip
mvebu: drop 06_set_iface_mac preinit script
MAC address is set in board.d script Interface swapping is not needed anymore as switching to DSA breaks previous configuration anyway Signed-off-by: DENG Qingfang <dengqf6@mail2.sysu.edu.cn>
Diffstat (limited to 'target/linux/mvebu')
-rw-r--r--target/linux/mvebu/cortexa9/base-files/lib/preinit/06_set_iface_mac50
1 files changed, 0 insertions, 50 deletions
diff --git a/target/linux/mvebu/cortexa9/base-files/lib/preinit/06_set_iface_mac b/target/linux/mvebu/cortexa9/base-files/lib/preinit/06_set_iface_mac
deleted file mode 100644
index 62ce2653a0..0000000000
--- a/target/linux/mvebu/cortexa9/base-files/lib/preinit/06_set_iface_mac
+++ /dev/null
@@ -1,50 +0,0 @@
-#
-# Copyright (C) 2014-2015 OpenWrt.org
-# Copyright (C) 2016 LEDE-Project.org
-#
-
-preinit_set_mac_address() {
- local mac
-
- . /lib/functions.sh
-
- case $(board_name) in
- buffalo,ls421de)
- mac=$(mtd_get_mac_ascii u-boot-env eth1addr)
- ip link set dev eth0 address $mac 2>/dev/null
- ;;
- linksys,caiman|linksys,cobra|linksys,rango|linksys,shelby|linksys,venom)
- # 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")
- ip link set dev eth0 address $mac 2>/dev/null
- ip link set dev eth1 address $mac_wan 2>/dev/null
- ;;
- linksys,mamba)
- mac=$(mtd_get_mac_ascii devinfo hw_mac_addr)
- ip link set dev eth0 address $mac 2>/dev/null
- ip link set dev eth1 address $mac 2>/dev/null
- ;;
- marvell,a385-db-ap|solidrun,clearfog*a1)
- # 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
-}
-
-boot_hook_add preinit_main preinit_set_mac_address