The only thing I see here thats appears to be specifically related to ETH is the fact that it probed for ipv6, and found no routers (really not that out of the ordinary). and the network state going up and down. The failures to write mmcblk0 may be where browser is trying to write to a cache or something, or it may be completely unrelated.
If theres a question whether or not the network interface itself is functional, you can check it from adb. If you can boot android and have busybox installed you can try: adb shell <enter> netcfg <enter> ( you should see the configuration of network interfaces, notably ETH0) if eth0 is not up you can do netcfg eth0 up (may need to su first) netcfg <enter> -> should now show eth0 as up if you have dhcp server setup somewhere on your network, your device should be ready to go for network connectivity, but not necessarily name resolution. You can set dns servers by doing setprop net.dns1 8.8.8.8<enter> setprop net.eth0.dns1 8.8.8.8<enter> That should get you to the point where you can browse the web and actually see content in your web browser. Should that solve your problems, you'll likely need to add that information in to your init.rc. The proper way to do this would be to add ethernet functionality in along side wifi stuff, and have networkmanager handle it. Patches for this functionality to exist out there for ICS builds. On Friday, May 18, 2012 7:30:56 AM UTC-7, Luccio wrote: > > Hi, > Here is the debug of ics on variscite omap4460 > > 26.910614] > acc_open > [ 26.913146] > acc_release > [ 27.112731] Vibra left overcurrent > detected > [ 27.114593] eth0: myevent done, flags = > 0x20 > [ 28.095336] SMSC_7500: Link is now > DOWN > [ 30.104644] SMSC_7500: Link is now UP at SLAVE 1000Mbps > FD > [ 30.114318] SMSC_7500: SMSC7500: ASYMP,SYMP ,1000FD,100FD,100HD,10FD > ,10HD > [ 30.128265] SMSC_7500: Partner: ,SYMP ,1000FD,100FD,100HD,10FD > ,10HD > [ 30.294311] mmcblk0: error -84 transferring data, sector 2658462, nr > 104, cm0 > [ 30.306884] end_request: I/O error, dev mmcblk0, sector > 2658462 > [ 30.313262] end_request: I/O error, dev mmcblk0, sector > 2658470 > [ 30.319671] end_request: I/O error, dev mmcblk0, sector > 2658478 > [ 30.325958] end_request: I/O error, dev mmcblk0, sector > 2658486 > [ 30.332336] end_request: I/O error, dev mmcblk0, sector > 2658494 > [ 30.338684] end_request: I/O error, dev mmcblk0, sector > 2658502 > [ 30.345062] end_request: I/O error, dev mmcblk0, sector > 2658510 > [ 30.351379] end_request: I/O error, dev mmcblk0, sector > 2658518 > [ 30.357757] end_request: I/O error, dev mmcblk0, sector > 2658526 > [ 30.364105] end_request: I/O error, dev mmcblk0, sector > 2658534 > [ 30.370452] end_request: I/O error, dev mmcblk0, sector > 2658542 > [ 30.376800] end_request: I/O error, dev mmcblk0, sector > 2658550 > [ 30.383148] end_request: I/O error, dev mmcblk0, sector > 2658558 > [ 30.389739] Aborting journal on device > mmcblk0p7-8. > [ 30.399841] journal commit I/O > error > [ 30.399993] journal commit I/O > error > [ 30.410125] EXT4-fs error (device mmcblk0p7): > ext4_journal_start_sb:296: > [ 30.417297] EXT4-fs error (device mmcblk0p7): > ext4_journal_start_sb:296: Detl > [ 30.427398] EXT4-fs (mmcblk0p7): Remounting filesystem > read-only > [ 30.427886] Detected aborted > journal > [ 30.427886] EXT4-fs (mmcblk0p7): Remounting filesystem > read-only > [ 37.555145] eth0: no IPv6 routers present > > can't start the browser !!!!!! > Any help! > -- unsubscribe: [email protected] website: http://groups.google.com/group/android-porting
