On Fri, Feb 18, 2011 at 4:42 PM, Jim Huang jserv@0xlab.org wrote:
2011/2/18 Jeremy Chang jeremy.chang@linaro.org:
Try to enable network interface and fetch IP via DHCP in boot script.
This will give the network interface a shot to fetch IP via DHCP.
To be precise, this patch works with Beagleboard-xM only.
--- a/init.omap3.sh +++ b/init.omap3.sh @@ -15,3 +15,5 @@ do ;; esac done < /proc/cpuinfo
+netcfg usb0 dhcp
Beagleboard xM has one Ethernet port connected over USB, and the driver model makes it usable as a normal network device on device node, usb0. (Ethernet support for USB )
That is the reason why "usb0" is here.
is this fatal for beagle C4? maybe we can make this gracefully fail and if you plug in a USBNET device it starts working?