DIMM-EMEV and Ethernet


How to get DHCP working with DIMM-EMEV2 for eth0?

Currently DHCP does not work properly in Android for eth0. There's a workaround using the bootloader. - Stop the bootprocess in bootloader. - and enter in bootloader:

setenv bootcmd 'setenv autoload n
dhcp
run android'
saveenv

Now the bootloader will trigger the DHCP request and pass the network configuration to Android which will configure eth0.


Back