No eth0 on Angstrom

Tom
Hello!

I've just set up Angstrom on my Mini2440 but I've got a problem with
network. After booting I don't have 'eth0'. Ifconfig shows no 'ethx' at all
but ifconfig -a shows eth1. Is it problem with U-boot? Or maybe I should
change something on my system?

thanks in advance
best regards
Tomasz

Xristos
You compiled your kernel right?
Did you configured the drivers correctly?

Coburn64
Just do:

root@mini2440~# ifconfig eth1 up

then do either

root@mini2440~# udhcpc (busybox DHCP client, I think)

or

root@mini2440~# dhclient

to get an IP Address. It's most likely due to a build setup issue (udev
might be to blame).

Tav
I had the same issue. The problem is in the "/etc/networks/interfaces"
config file. Go into the interfaces file and change.

auto eth0
iface eth0 inet dhcp 
iface eth1 inet dhcp 

TO:

auto eth0
iface eth0 inet dhcp 

auto eth1
iface eth1 inet dhcp 

Then reboot.

Thanks for the clue Coburn64

Tav