diff options
Diffstat (limited to 'packages/netbase')
-rw-r--r-- | packages/netbase/netbase/interfaces | 9 | ||||
-rw-r--r-- | packages/netbase/netbase_4.19.bb | 2 |
2 files changed, 8 insertions, 3 deletions
diff --git a/packages/netbase/netbase/interfaces b/packages/netbase/netbase/interfaces index 4afec0ff74..63d2a93f55 100644 --- a/packages/netbase/netbase/interfaces +++ b/packages/netbase/netbase/interfaces @@ -17,8 +17,13 @@ iface eth1 inet dhcp # Zaurus usbnet iface usbd0 inet dhcp -# iPAQ usbnet -iface usbf inet dhcp +# iPAQ usb network +# (192.168.0.202 is the iPAQ's IP, 192.168.0.200 is the host's IP) +iface usbf inet static + address 192.168.0.202 + netmask 255.255.255.0 + network 192.168.0.0 + gateway 192.168.0.200 # Bluetooth networking iface bnep0 inet dhcp diff --git a/packages/netbase/netbase_4.19.bb b/packages/netbase/netbase_4.19.bb index 525ba4e4ad..4765503561 100644 --- a/packages/netbase/netbase_4.19.bb +++ b/packages/netbase/netbase_4.19.bb @@ -2,7 +2,7 @@ SECTION = "base" DESCRIPTION = "This package provides the necessary \ infrastructure for basic TCP/IP based networking." LICENSE = "GPL" -PR = "r4" +PR = "r5" inherit update-rc.d |