diff options
author | florian <florian@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2009-04-24 12:55:28 +0000 |
---|---|---|
committer | florian <florian@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2009-04-24 12:55:28 +0000 |
commit | 9b8a15dcde03aec801a4f5ec14f27f149179bf6c (patch) | |
tree | fcbeb51a451a89747038db4bdab6e786270fe688 /target/linux/rdc/base-files/etc | |
parent | b63bddaf5358e444c87ba1d86808cd4ee784fa01 (diff) |
[rdc] add support for 2.6.28 and use it as the default kernel version, tested on Airlink AR525W and RDC8610 eval board
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@15382 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/rdc/base-files/etc')
-rw-r--r-- | target/linux/rdc/base-files/etc/config/network | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/target/linux/rdc/base-files/etc/config/network b/target/linux/rdc/base-files/etc/config/network new file mode 100644 index 000000000..44c57940e --- /dev/null +++ b/target/linux/rdc/base-files/etc/config/network @@ -0,0 +1,18 @@ +# Copyright (C) 2009 OpenWrt.org + +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 |