Explorar o código

avr32: create network config dynamically

The default network configuration from base-files
is not correct for the NGW100 board.

Signed-off-by: Gabor Juhos <[email protected]>

SVN-Revision: 35979
Gabor Juhos %!s(int64=12) %!d(string=hai) anos
pai
achega
de0d19ac3d

+ 5 - 0
target/linux/avr32/base-files.mk

@@ -0,0 +1,5 @@
+define Package/base-files/install-target
+	rm -f $(1)/etc/config/network
+endef
+
+

+ 17 - 0
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