aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/ar7/base-files/etc/board.d
diff options
context:
space:
mode:
authorDaniel Golle <daniel@makrotopia.org>2019-06-12 01:14:25 +0200
committerDaniel Golle <daniel@makrotopia.org>2019-06-12 01:18:52 +0200
commit000d400baa0af2e42c9a462e42df7dc9abde1ec7 (patch)
treea11c2dd570e8f02c4a141f135fc8db1e1d391ef2 /target/linux/ar7/base-files/etc/board.d
parentc4e727f01cc40bd57274d0b885b0f75cde9c4683 (diff)
downloadupstream-000d400baa0af2e42c9a462e42df7dc9abde1ec7.tar.gz
upstream-000d400baa0af2e42c9a462e42df7dc9abde1ec7.tar.bz2
upstream-000d400baa0af2e42c9a462e42df7dc9abde1ec7.zip
kernel: drop everything not on kernel version 4.14
* Remove testing patches for kernel version 4.19 * remove targets ar7, ixp4xx, orion Those targets are still on kernel 4.9, patches for 4.14 were not ready in time. They may be readded once people prepare and test patches for kernel 4.14. Signed-off-by: Daniel Golle <daniel@makrotopia.org>
Diffstat (limited to 'target/linux/ar7/base-files/etc/board.d')
-rwxr-xr-xtarget/linux/ar7/base-files/etc/board.d/02_network28
1 files changed, 0 insertions, 28 deletions
diff --git a/target/linux/ar7/base-files/etc/board.d/02_network b/target/linux/ar7/base-files/etc/board.d/02_network
deleted file mode 100755
index c1c2dc42fe..0000000000
--- a/target/linux/ar7/base-files/etc/board.d/02_network
+++ /dev/null
@@ -1,28 +0,0 @@
-#!/bin/sh
-
-. /lib/functions/uci-defaults.sh
-
-board_config_update
-
-if [ -e "/sys/bus/mdio_bus/drivers/IC+ IP175A/1:00" -o \
- -e "/sys/bus/mdio_bus/drivers/IC+ IP17xx/1:00" ] && \
- [ -x /sbin/swconfig ];
-then
- ucidef_add_switch "eth0" \
- "0:lan" "1:lan" "2:lan" "3:lan" "4t@eth0"
-
-elif [ -e "/sys/bus/mdio_bus/drivers/Infineon ADM6996/1:00" -o \
- -e "/sys/bus/mdio_bus/drivers/Marvell 88E6060/1:10" ];
-then
- ucidef_set_interface_lan "eth0.1"
-
-elif [ -d "/sys/class/net/eth1" ]; then
- ucidef_set_interface_lan "eth0 eth1"
-
-else
- ucidef_set_interface_lan "eth0"
-fi
-
-board_config_flush
-
-exit 0