[source] brcm47xx: remove target specific network preinit config

LEDE Commits lede-commits at lists.infradead.org
Thu Dec 14 09:45:44 PST 2017


jow pushed a commit to source.git, branch lede-17.01:
https://git.lede-project.org/ebb54740c79b4d66c269cda50558cbd0688dc255

commit ebb54740c79b4d66c269cda50558cbd0688dc255
Author: Jo-Philipp Wich <jo at mein.io>
AuthorDate: Wed May 17 14:36:23 2017 +0200

    brcm47xx: remove target specific network preinit config
    
    The generic preinit code is now able to setup network and switch vlan settings
    from the /etc/board.json file, therefor drop the target specific code.
    
    Fixes FS#790.
    
    Signed-off-by: Jo-Philipp Wich <jo at mein.io>
    (cherry picked from commit 833c500cb2985e9b76a1aae3b6a577977eee5457)
---
 .../base-files/lib/preinit/05_init_interfaces_brcm       | 16 ----------------
 .../base-files/lib/preinit/15_set_preinit_interface_brcm | 16 ----------------
 2 files changed, 32 deletions(-)

diff --git a/target/linux/brcm47xx/base-files/lib/preinit/05_init_interfaces_brcm b/target/linux/brcm47xx/base-files/lib/preinit/05_init_interfaces_brcm
deleted file mode 100644
index 4b0d0eb..0000000
--- a/target/linux/brcm47xx/base-files/lib/preinit/05_init_interfaces_brcm
+++ /dev/null
@@ -1,16 +0,0 @@
-#!/bin/sh
-
-preinit_iface() {
-	ifname=eth0
-
-	# hardware specific overrides
-	case "$(awk 'BEGIN{FS="[ \t]+:[ \t]"} /machine/ {print $2}' /proc/cpuinfo)" in
-		"Asus WLHDD") ifname=eth1;;
-		"Asus WL300G") ifname=eth1;;
-	esac
-
-	local try=0;
-	while [ $((try++)) -le 5 ] && [ ! -f /sys/class/net/$ifname/operstate ]; do sleep 1; done
-}
-
-boot_hook_add preinit_main preinit_iface
diff --git a/target/linux/brcm47xx/base-files/lib/preinit/15_set_preinit_interface_brcm b/target/linux/brcm47xx/base-files/lib/preinit/15_set_preinit_interface_brcm
deleted file mode 100644
index f40e160..0000000
--- a/target/linux/brcm47xx/base-files/lib/preinit/15_set_preinit_interface_brcm
+++ /dev/null
@@ -1,16 +0,0 @@
-#!/bin/sh
-
-preinit_ip() {
-	# if the preinit interface isn't specified and ifname is set in
-	# preinit.arch use that interface
-	if [ -z "$pi_ifname" ]; then
-		pi_ifname=$ifname
-	fi
-
-	[ -n "$pi_ifname" ] && grep -q "$pi_ifname" /proc/net/dev && {
-		ifconfig $pi_ifname $pi_ip netmask $pi_netmask broadcast $pi_broadcast up
-
-		local try=0;
-		while [ $((try++)) -le 5 ] && [ ! "$(cat /sys/class/net/$pi_ifname/operstate)" = "up" ]; do sleep 1; done
-	}
-}



More information about the lede-commits mailing list