diff options
author | Michael Büsch <mb@bu3sch.de> | 2011-03-07 00:09:51 +0000 |
---|---|---|
committer | Michael Büsch <mb@bu3sch.de> | 2011-03-07 00:09:51 +0000 |
commit | 00d2c4b0481bd9cdeb69b5ac420d46cdf4a5713d (patch) | |
tree | 4414a9b4588f95aafcc93879c4070469c4cf3821 /target | |
parent | dcb66b05937254f7a84e0e296ea61b41a7cc9b12 (diff) | |
download | upstream-00d2c4b0481bd9cdeb69b5ac420d46cdf4a5713d.tar.gz upstream-00d2c4b0481bd9cdeb69b5ac420d46cdf4a5713d.tar.bz2 upstream-00d2c4b0481bd9cdeb69b5ac420d46cdf4a5713d.zip |
n810: Add usb networking to default net config
SVN-Revision: 25917
Diffstat (limited to 'target')
-rw-r--r-- | target/linux/omap24xx/base-files/etc/config/network | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/target/linux/omap24xx/base-files/etc/config/network b/target/linux/omap24xx/base-files/etc/config/network index f92cb34f2d..8207443f39 100644 --- a/target/linux/omap24xx/base-files/etc/config/network +++ b/target/linux/omap24xx/base-files/etc/config/network @@ -1,9 +1,15 @@ 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 + option netmask 255.255.255.0 +config interface usb + option ifname usb0 + option proto static + option ipaddr 192.168.168.168 + option netmask 255.255.255.0 + option ip6addr fe80::810:1 |