diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2015-12-03 22:42:09 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2015-12-03 22:42:09 +0000 |
commit | 21ea086bd349fb8b91f3ea46b62013c5cd148aab (patch) | |
tree | d677ec577469fca6a6fbab39979d1e919af8735d /target/linux/octeon/base-files/etc/uci-defaults | |
parent | 7514b6d73b7cad9e6f13ae9527eeee39630a10a8 (diff) | |
download | mtk-20170518-21ea086bd349fb8b91f3ea46b62013c5cd148aab.zip mtk-20170518-21ea086bd349fb8b91f3ea46b62013c5cd148aab.tar.gz mtk-20170518-21ea086bd349fb8b91f3ea46b62013c5cd148aab.tar.bz2 |
octeon: switch from uci-defaults to board.d
Signed-off-by: Jo-Philipp Wich <jow@openwrt.org>
SVN-Revision: 47734
Diffstat (limited to 'target/linux/octeon/base-files/etc/uci-defaults')
-rw-r--r-- | target/linux/octeon/base-files/etc/uci-defaults/01_network | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/target/linux/octeon/base-files/etc/uci-defaults/01_network b/target/linux/octeon/base-files/etc/uci-defaults/01_network deleted file mode 100644 index bda8d0c..0000000 --- a/target/linux/octeon/base-files/etc/uci-defaults/01_network +++ /dev/null @@ -1,31 +0,0 @@ -#!/bin/sh -# -# Copyright (C) 2014 OpenWrt.org -# - -[ -e /etc/config/network ] && exit 0 - -. /lib/functions/uci-defaults.sh -. /lib/functions/octeon.sh - -touch /etc/config/network - -board=$(octeon_board_name) - -case "$board" in -erlite) - ucidef_set_interface_loopback - ucidef_set_interface_lan 'eth0' - ucidef_set_interface_wan 'eth1' - ;; - -*) - ucidef_set_interface_loopback - ucidef_set_interface_wan 'eth1' - ucidef_set_interface_lan 'eth0' - ;; -esac - -uci commit network - -exit 0 |