diff options
author | Gabor Juhos <juhosg@openwrt.org> | 2013-03-12 13:28:19 +0000 |
---|---|---|
committer | Gabor Juhos <juhosg@openwrt.org> | 2013-03-12 13:28:19 +0000 |
commit | de0d19ac3d8d53325dc9f72f907063fcde49a837 (patch) | |
tree | d2605713841896c188c2bb1b0945ea733a06a7ef /target/linux/avr32/base-files | |
parent | 73caeba5228e8404381cea1f550dfbde099b910b (diff) | |
download | upstream-de0d19ac3d8d53325dc9f72f907063fcde49a837.tar.gz upstream-de0d19ac3d8d53325dc9f72f907063fcde49a837.tar.bz2 upstream-de0d19ac3d8d53325dc9f72f907063fcde49a837.zip |
avr32: create network config dynamically
The default network configuration from base-files
is not correct for the NGW100 board.
Signed-off-by: Gabor Juhos <juhosg@openwrt.org>
SVN-Revision: 35979
Diffstat (limited to 'target/linux/avr32/base-files')
-rwxr-xr-x | target/linux/avr32/base-files/etc/uci-defaults/02_network | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/target/linux/avr32/base-files/etc/uci-defaults/02_network b/target/linux/avr32/base-files/etc/uci-defaults/02_network new file mode 100755 index 0000000000..3676146eb5 --- /dev/null +++ b/target/linux/avr32/base-files/etc/uci-defaults/02_network @@ -0,0 +1,17 @@ +#!/bin/sh +# +# Copyright (C) 2013 OpenWrt.org +# + +[ -e /etc/config/network ] && exit 0 + +touch /etc/config/network + +. /lib/functions/uci-defaults.sh + +ucidef_set_interface_loopback +ucidef_set_interfaces_lan_wan "eth1" "eth0" + +uci commit network + +exit 0 |