diff options
author | Florian Fainelli <florian@openwrt.org> | 2009-04-24 12:55:28 +0000 |
---|---|---|
committer | Florian Fainelli <florian@openwrt.org> | 2009-04-24 12:55:28 +0000 |
commit | 426c91001ffca85fb8e8d06f655350b0478aa902 (patch) | |
tree | db057b4d42e60765233ae26b194fef38aef3aef3 /target/linux/rdc/base-files | |
parent | 317bf46798780632539aa85cb67ee794d4e8ae49 (diff) | |
download | upstream-426c91001ffca85fb8e8d06f655350b0478aa902.tar.gz upstream-426c91001ffca85fb8e8d06f655350b0478aa902.tar.bz2 upstream-426c91001ffca85fb8e8d06f655350b0478aa902.zip |
add support for 2.6.28 and use it as the default kernel version, tested on Airlink AR525W and RDC8610 eval board
SVN-Revision: 15382
Diffstat (limited to 'target/linux/rdc/base-files')
-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 0000000000..44c57940e2 --- /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 |