diff options
author | mb <mb@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2010-09-11 15:21:03 +0000 |
---|---|---|
committer | mb <mb@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2010-09-11 15:21:03 +0000 |
commit | 53687e580b7d6e4477a7153b8a7040d4c6453045 (patch) | |
tree | b55c6ce8d9f29c9e4c9446622f67ee475e72ffac /target/linux/omap24xx/base-files/etc | |
parent | 1d74d1ed465e0fb4141d2f8db8cd2d9647a49662 (diff) |
omap24xx: Add default network config
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@23004 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/omap24xx/base-files/etc')
-rw-r--r-- | target/linux/omap24xx/base-files/etc/config/network | 9 | ||||
-rw-r--r-- | target/linux/omap24xx/base-files/etc/config/wireless | 20 |
2 files changed, 29 insertions, 0 deletions
diff --git a/target/linux/omap24xx/base-files/etc/config/network b/target/linux/omap24xx/base-files/etc/config/network new file mode 100644 index 000000000..f92cb34f2 --- /dev/null +++ b/target/linux/omap24xx/base-files/etc/config/network @@ -0,0 +1,9 @@ +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 proto dhcp + diff --git a/target/linux/omap24xx/base-files/etc/config/wireless b/target/linux/omap24xx/base-files/etc/config/wireless new file mode 100644 index 000000000..b640ce6c2 --- /dev/null +++ b/target/linux/omap24xx/base-files/etc/config/wireless @@ -0,0 +1,20 @@ +config wifi-device radio0 + option type mac80211 + option phy phy0 + option channel auto + # TODO: CHANGE THE MAC-ADDRESS: + option macaddr 00:11:22:33:44:55 + option hwmode 11g +# option country DE + + # REMOVE THIS LINE TO ENABLE WIFI: + option disabled 1 + +config wifi-iface + option device radio0 + option powersave 1 + option network lan + option mode sta + option ssid OpenWrt +# option encryption psk2 +# option key "foobar" |