summaryrefslogtreecommitdiffstats
path: root/target
diff options
context:
space:
mode:
authorjuhosg <juhosg@3c298f89-4303-0410-b956-a3cf2f4a3e73>2009-10-20 19:36:47 +0000
committerjuhosg <juhosg@3c298f89-4303-0410-b956-a3cf2f4a3e73>2009-10-20 19:36:47 +0000
commita73408d56c5c91e667a72ac72091a574274e1577 (patch)
treeab84c2a2103e1dae12a2a7a4d8d69d7c701f39bf /target
parent11adc3d3d99be025a29ea320b1142104f2f1e0f8 (diff)
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
Diffstat (limited to 'target')
-rw-r--r--target/linux/ar71xx/base-files/etc/defconfig/routerstation-pro/network16
-rw-r--r--target/linux/ar71xx/base-files/etc/defconfig/routerstation/network16
-rwxr-xr-xtarget/linux/ar71xx/base-files/lib/ar71xx.sh3
3 files changed, 35 insertions, 0 deletions
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"
;;