summaryrefslogtreecommitdiff
path: root/target/linux/ipq806x/base-files/etc/uci-defaults/network
diff options
context:
space:
mode:
authorJo-Philipp Wich <jow@openwrt.org>2015-12-03 21:13:12 +0000
committerJo-Philipp Wich <jow@openwrt.org>2015-12-03 21:13:12 +0000
commit4615944c71dcf8e21d8e90ea48ce6a6ba00a7b4c (patch)
tree987f3247669eb57aebdee2be3a37af7bbf40c769 /target/linux/ipq806x/base-files/etc/uci-defaults/network
parentb3f8340a5e36bcf1287985830adf51096c27445b (diff)
downloadmtk-20170518-4615944c71dcf8e21d8e90ea48ce6a6ba00a7b4c.zip
mtk-20170518-4615944c71dcf8e21d8e90ea48ce6a6ba00a7b4c.tar.gz
mtk-20170518-4615944c71dcf8e21d8e90ea48ce6a6ba00a7b4c.tar.bz2
ipq806x: switch from uci-defaults to board.d
Signed-off-by: Jo-Philipp Wich <jow@openwrt.org> SVN-Revision: 47730
Diffstat (limited to 'target/linux/ipq806x/base-files/etc/uci-defaults/network')
-rwxr-xr-xtarget/linux/ipq806x/base-files/etc/uci-defaults/network39
1 files changed, 0 insertions, 39 deletions
diff --git a/target/linux/ipq806x/base-files/etc/uci-defaults/network b/target/linux/ipq806x/base-files/etc/uci-defaults/network
deleted file mode 100755
index 7742b73..0000000
--- a/target/linux/ipq806x/base-files/etc/uci-defaults/network
+++ /dev/null
@@ -1,39 +0,0 @@
-#!/bin/sh
-#
-# Copyright (c) 2015 The Linux Foundation. All rights reserved.
-# Copyright (C) 2011 OpenWrt.org
-#
-
-[ -e /etc/config/network ] && exit 0
-
-touch /etc/config/network
-
-. /lib/functions/uci-defaults.sh
-. /lib/ipq806x.sh
-
-ucidef_set_interface_loopback
-
-board=$(ipq806x_board_name)
-
-case "$board" in
-ap148 |\
-r7500)
- ucidef_set_interfaces_lan_wan "eth1" "eth0"
- ucidef_add_switch "switch0" "1" "1"
- ucidef_add_switch_vlan "switch0" "1" "6 1 2 3 4"
- ucidef_add_switch_vlan "switch0" "2" "0 5"
- ;;
-db149)
- ucidef_set_interfaces_lan_wan "eth1 eth2 eth3" "eth0"
- ucidef_add_switch "switch0" "1" "1"
- ucidef_add_switch_vlan "switch0" "1" "6 1 2 3 4"
- ucidef_add_switch_vlan "switch0" "2" "0 5"
- ;;
-*)
- echo "Unsupported hardware. Network interfaces not intialized"
- ;;
-esac
-
-uci commit network
-
-exit 0