1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-11-25 04:50:39 +02:00

add base files for

- assigning IP 192.168.1.1 per default to usb0-interface (usb-ethernet-gadget)
 - add mountpoint for 1st partrition of sd-card - prelimary for testing purposes
This commit is contained in:
Mirko Vogt 2009-09-24 17:16:32 +02:00 committed by Xiangfu Liu
parent 2b24518947
commit 45c720faff
2 changed files with 19 additions and 0 deletions

View File

@ -0,0 +1,6 @@
config mount
option target /card
option device /dev/mmcblk0p1
option fstype auto
option options rw,sync
option enabled 1

View File

@ -0,0 +1,13 @@
# 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 usb0
option proto static
option ipaddr 192.168.1.1
option netmask 255.255.255.0