diff options
author | Felix Fietkau <nbd@openwrt.org> | 2015-04-16 12:18:34 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2015-04-16 12:18:34 +0000 |
commit | 8331de537d3a3b1e50d1fbd8f8bae846d02aefcd (patch) | |
tree | f93ae45230cb52a111f15089163d9da04d1a052c /target/linux/bcm53xx/base-files | |
parent | 3ed309fd915358e94284728a01dc4fd6195d4b1a (diff) | |
download | upstream-8331de537d3a3b1e50d1fbd8f8bae846d02aefcd.tar.gz upstream-8331de537d3a3b1e50d1fbd8f8bae846d02aefcd.tar.bz2 upstream-8331de537d3a3b1e50d1fbd8f8bae846d02aefcd.zip |
bcm53xx: make use of the new board detection layer
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@45458 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/bcm53xx/base-files')
-rwxr-xr-x[-rw-r--r--] | target/linux/bcm53xx/base-files/etc/board.d/02_network (renamed from target/linux/bcm53xx/base-files/etc/uci-defaults/02_network) | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/target/linux/bcm53xx/base-files/etc/uci-defaults/02_network b/target/linux/bcm53xx/base-files/etc/board.d/02_network index 9ffb427d1c..c36b47ca4d 100644..100755 --- a/target/linux/bcm53xx/base-files/etc/uci-defaults/02_network +++ b/target/linux/bcm53xx/base-files/etc/board.d/02_network @@ -3,11 +3,9 @@ # Copyright (C) 2011 OpenWrt.org # -[ -e /etc/config/network ] && exit 0 +. /lib/functions/uci-defaults-new.sh -touch /etc/config/network - -. /lib/functions/uci-defaults.sh +board_config_update ucidef_set_interface_loopback @@ -32,6 +30,6 @@ else ucidef_add_switch_vlan "switch0" "2" "4 5t" fi -uci commit network +board_config_flush exit 0 |