diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2015-12-03 23:13:04 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2015-12-03 23:13:04 +0000 |
commit | 296212c301cee1a15b140e1d0c91bc0e946c2716 (patch) | |
tree | 0693fc2bcb4e9d30ebc4bafddbbd4fb6d79fcfcd /target/linux | |
parent | 527ec2af59b3979ed2e26fe0d945a9e4ca642603 (diff) | |
download | upstream-296212c301cee1a15b140e1d0c91bc0e946c2716.tar.gz upstream-296212c301cee1a15b140e1d0c91bc0e946c2716.tar.bz2 upstream-296212c301cee1a15b140e1d0c91bc0e946c2716.zip |
kirkwood: add missing board_config_flush(), remove dead code
Signed-off-by: Jo-Philipp Wich <jow@openwrt.org>
SVN-Revision: 47745
Diffstat (limited to 'target/linux')
-rwxr-xr-x | target/linux/kirkwood/base-files/etc/board.d/02_network | 21 |
1 files changed, 1 insertions, 20 deletions
diff --git a/target/linux/kirkwood/base-files/etc/board.d/02_network b/target/linux/kirkwood/base-files/etc/board.d/02_network index eb091745af..355418b229 100755 --- a/target/linux/kirkwood/base-files/etc/board.d/02_network +++ b/target/linux/kirkwood/base-files/etc/board.d/02_network @@ -3,30 +3,11 @@ # Copyright (C) 2012-2015 OpenWrt.org # -[ -e /etc/config/network ] && exit 0 - -touch /etc/config/network - -set_lan_dhcp() { - local ifname=$1 - uci batch <<EOF -set network.lan='interface' -set network.lan.ifname='$ifname' -set network.lan.proto='dhcp' -set network.lan6='interface' -set network.lan6.ifname='@lan' -set network.lan6.proto='dhcpv6' -set network.lan6.reqprefix='no' -EOF -} - . /lib/functions/uci-defaults-new.sh . /lib/kirkwood.sh board_config_update -ucidef_set_interface_loopback - board=$(kirkwood_board_name) case "$board" in @@ -59,6 +40,6 @@ case "$board" in ;; esac -uci commit network +board_config_flush exit 0 |