diff options
author | John Crispin <john@openwrt.org> | 2014-06-19 14:13:20 +0000 |
---|---|---|
committer | John Crispin <john@openwrt.org> | 2014-06-19 14:13:20 +0000 |
commit | e6e024f155f1a9348418ae6e80f4166c4b281d10 (patch) | |
tree | 03d6c2ea92c293fd59b91ff105628c95367e5b10 /target/linux/octeon/base-files/etc/uci-defaults | |
parent | f98b58fcec74f7c7c87ab24a8e1d423458e405dd (diff) | |
download | mtk-20170518-e6e024f155f1a9348418ae6e80f4166c4b281d10.zip mtk-20170518-e6e024f155f1a9348418ae6e80f4166c4b281d10.tar.gz mtk-20170518-e6e024f155f1a9348418ae6e80f4166c4b281d10.tar.bz2 |
octeon: add basic board detection
Signed-off-by: John Crispin <blogic@openwrt.org>
SVN-Revision: 41274
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, 31 insertions, 0 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 new file mode 100644 index 0000000..bda8d0c --- /dev/null +++ b/target/linux/octeon/base-files/etc/uci-defaults/01_network @@ -0,0 +1,31 @@ +#!/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 |