aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/brcm2708/base-files/etc/board.d/02_network
diff options
context:
space:
mode:
Diffstat (limited to 'target/linux/brcm2708/base-files/etc/board.d/02_network')
-rwxr-xr-xtarget/linux/brcm2708/base-files/etc/board.d/02_network32
1 files changed, 0 insertions, 32 deletions
diff --git a/target/linux/brcm2708/base-files/etc/board.d/02_network b/target/linux/brcm2708/base-files/etc/board.d/02_network
deleted file mode 100755
index 36c8c5df1a..0000000000
--- a/target/linux/brcm2708/base-files/etc/board.d/02_network
+++ /dev/null
@@ -1,32 +0,0 @@
-#!/bin/sh
-# Copyright (C) 2014-2016 OpenWrt.org
-# Copyright (C) 2017 LEDE project
-
-. /lib/functions/uci-defaults.sh
-. /lib/functions.sh
-. /lib/functions/system.sh
-
-board_config_update
-
-board=$(board_name)
-
-case "$board" in
-raspberrypi,model-b |\
-raspberrypi,model-b-plus |\
-raspberrypi,model-b-rev2 |\
-raspberrypi,2-model-b |\
-raspberrypi,2-model-b-rev2 |\
-raspberrypi,3-model-b |\
-raspberrypi,3-model-b-plus |\
-raspberrypi,4-model-b)
- ucidef_set_interface_lan "eth0"
- ;;
-
-raspberrypi,model-zero-w)
- ucidef_set_interface_lan "wlan0"
- ;;
-esac
-
-board_config_flush
-
-exit 0