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/board.d/01_network | |
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/board.d/01_network')
-rwxr-xr-x | target/linux/octeon/base-files/etc/board.d/01_network | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/target/linux/octeon/base-files/etc/board.d/01_network b/target/linux/octeon/base-files/etc/board.d/01_network new file mode 100755 index 0000000..f07bdf8 --- /dev/null +++ b/target/linux/octeon/base-files/etc/board.d/01_network @@ -0,0 +1,25 @@ +#!/bin/sh +# +# Copyright (C) 2014-2015 OpenWrt.org +# + +. /lib/functions/uci-defaults-new.sh +. /lib/functions/octeon.sh + +board_config_update + +board=$(octeon_board_name) + +case "$board" in +erlite) + ucidef_set_interfaces_lan_wan "eth0" "eth1" + ;; + +*) + ucidef_set_interfaces_lan_wan "eth0" "eth1" + ;; +esac + +board_config_flush + +exit 0 |