diff options
author | Tim Yardley <lst@openwrt.org> | 2007-03-02 18:17:40 +0000 |
---|---|---|
committer | Tim Yardley <lst@openwrt.org> | 2007-03-02 18:17:40 +0000 |
commit | 484609eeb06618dd2581f93ba57d0023a1f3adee (patch) | |
tree | 7f04a17039bdac5a306e1033a79e042b810051dd /target/linux/rb532-2.6/base-files/default/etc | |
parent | 91e5dba2c76d9185cc06c32feb51b8b0d1c310ca (diff) | |
download | upstream-484609eeb06618dd2581f93ba57d0023a1f3adee.tar.gz upstream-484609eeb06618dd2581f93ba57d0023a1f3adee.tar.bz2 upstream-484609eeb06618dd2581f93ba57d0023a1f3adee.zip |
commit profile support for base-files... patches still need to be done
SVN-Revision: 6465
Diffstat (limited to 'target/linux/rb532-2.6/base-files/default/etc')
-rw-r--r-- | target/linux/rb532-2.6/base-files/default/etc/config/network | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/target/linux/rb532-2.6/base-files/default/etc/config/network b/target/linux/rb532-2.6/base-files/default/etc/config/network new file mode 100644 index 0000000000..8279690574 --- /dev/null +++ b/target/linux/rb532-2.6/base-files/default/etc/config/network @@ -0,0 +1,12 @@ +# Copyright (C) 2006 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 eth0 + option proto dhcp + |