diff options
author | juhosg <juhosg@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2013-03-12 13:28:19 +0000 |
---|---|---|
committer | juhosg <juhosg@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2013-03-12 13:28:19 +0000 |
commit | 3dd95b31f0c04efbe92bedf5f99b8f99afd59eca (patch) | |
tree | 934e3fbc3ae30a37ce74f42eaa711ee4bd200647 /target/linux/avr32/base-files/etc | |
parent | 753edd1952ff43789db3298c0f27fe43b2eba338 (diff) |
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>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@35979 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/avr32/base-files/etc')
-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 |