From patchwork Tue Dec 7 14:32:51 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [2/4] netbase: add iphone3g support Date: Tue, 07 Dec 2010 14:32:51 -0000 From: Denis Carikli X-Patchwork-Id: 7 Message-Id: <1291732373-17953-3-git-send-email-GNUtoo@no-log.org> To: openembedded-devel@lists.openembedded.org Without that patch, the user can't ssh into his device, because usb0 is not up on the device side Signed-off-by: Chris 'Lopi' Spehn Signed-off-by: Denis 'GNUtoo' Carikli Acked-by: Stefan Schmidt --- recipes/netbase/netbase/iphone3g/interfaces | 20 ++++++++++++++++++++ recipes/netbase/netbase_4.21.bb | 2 +- 2 files changed, 21 insertions(+), 1 deletions(-) create mode 100644 recipes/netbase/netbase/iphone3g/interfaces diff --git a/recipes/netbase/netbase/iphone3g/interfaces b/recipes/netbase/netbase/iphone3g/interfaces new file mode 100644 index 0000000..e0c5f21 --- /dev/null +++ b/recipes/netbase/netbase/iphone3g/interfaces @@ -0,0 +1,20 @@ +# /etc/network/interfaces -- configuration file for ifup(8), ifdown(8) + +# The loopback interface +auto lo +iface lo inet loopback + +# Ethernet/RNDIS gadget (g_ether) +# ... or on host side, usbnet and random hwaddr +auto usb0 +iface usb0 inet static + address 192.168.0.202 + netmask 255.255.255.0 + network 192.168.0.0 + up route add default gw 192.168.0.200 metric 8 + up echo nameserver 208.67.222.222 > /etc/resolv.conf + up echo nameserver 208.67.220.220 >> /etc/resolv.conf + down route del default gw 192.168.0.200 metric 8 + +auto wlan0 +iface wlan0 inet dhcp diff --git a/recipes/netbase/netbase_4.21.bb b/recipes/netbase/netbase_4.21.bb index 68b8637..f3ae6e9 100644 --- a/recipes/netbase/netbase_4.21.bb +++ b/recipes/netbase/netbase_4.21.bb @@ -2,7 +2,7 @@ DESCRIPTION = "This package provides the necessary \ infrastructure for basic TCP/IP based networking." SECTION = "base" LICENSE = "GPLv2" -PR = "r49" +PR = "r50" inherit update-rc.d