From a73408d56c5c91e667a72ac72091a574274e1577 Mon Sep 17 00:00:00 2001
From: juhosg <juhosg@3c298f89-4303-0410-b956-a3cf2f4a3e73>
Date: Tue, 20 Oct 2009 19:36:47 +0000
Subject: [PATCH] ar71xx: add default network configuration for RS and RS-Pro

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18103 3c298f89-4303-0410-b956-a3cf2f4a3e73
---
 .../etc/defconfig/routerstation-pro/network      | 16 ++++++++++++++++
 .../etc/defconfig/routerstation/network          | 16 ++++++++++++++++
 target/linux/ar71xx/base-files/lib/ar71xx.sh     |  3 +++
 3 files changed, 35 insertions(+)
 create mode 100644 target/linux/ar71xx/base-files/etc/defconfig/routerstation-pro/network
 create mode 100644 target/linux/ar71xx/base-files/etc/defconfig/routerstation/network

diff --git a/target/linux/ar71xx/base-files/etc/defconfig/routerstation-pro/network b/target/linux/ar71xx/base-files/etc/defconfig/routerstation-pro/network
new file mode 100644
index 000000000..ff7b42d87
--- /dev/null
+++ b/target/linux/ar71xx/base-files/etc/defconfig/routerstation-pro/network
@@ -0,0 +1,16 @@
+config interface loopback
+	option ifname	lo
+	option proto	static
+	option ipaddr	127.0.0.1
+	option netmask	255.0.0.0
+
+config interface lan
+	option ifname	eth1
+	option type	bridge
+	option proto	static
+	option ipaddr	192.168.1.1
+	option netmask	255.255.255.0
+
+config interface wan
+	option ifname	eth0
+	option proto	dhcp
diff --git a/target/linux/ar71xx/base-files/etc/defconfig/routerstation/network b/target/linux/ar71xx/base-files/etc/defconfig/routerstation/network
new file mode 100644
index 000000000..ff7b42d87
--- /dev/null
+++ b/target/linux/ar71xx/base-files/etc/defconfig/routerstation/network
@@ -0,0 +1,16 @@
+config interface loopback
+	option ifname	lo
+	option proto	static
+	option ipaddr	127.0.0.1
+	option netmask	255.0.0.0
+
+config interface lan
+	option ifname	eth1
+	option type	bridge
+	option proto	static
+	option ipaddr	192.168.1.1
+	option netmask	255.255.255.0
+
+config interface wan
+	option ifname	eth0
+	option proto	dhcp
diff --git a/target/linux/ar71xx/base-files/lib/ar71xx.sh b/target/linux/ar71xx/base-files/lib/ar71xx.sh
index aafeaa393..f8c46ac2b 100755
--- a/target/linux/ar71xx/base-files/lib/ar71xx.sh
+++ b/target/linux/ar71xx/base-files/lib/ar71xx.sh
@@ -52,6 +52,9 @@ ar71xx_board_name() {
 	*RouterStation)
 		name="routerstation"
 		;;
+	*"RouterStation Pro")
+		name="routerstation-pro"
+		;;
 	*TEW-632BRP)
 		name="tew-632brp"
 		;;
-- 
2.20.1