Forum Discussion
Altera_Forum
Honored Contributor
19 years agoDE2 dev board ->ETH problem
Hi, I tried to put uClinux on a DE2 dev board for one of my school project, and i don't succeed to enable the ETH. http://forum.niosforum.com/work2/style_emoticons/<#EMO_DIR#>/sad.gif ...
Altera_Forum
Honored Contributor
19 years ago --- Quote Start --- originally posted by xrevo@Mar 14 2007, 06:22 PM at the boot message of de2 i can see :
<dm9ks> i/o: 80900090, vid: 90000a46,
but if i do an ifconfig i just have the localhost,
no eth0 or something like that. http://forum.niosforum.com/work2/style_emoticons/<#emo_dir#>/blink.gif
why ??? --- Quote End --- You need to bring up eth0 first, before you can use ifconfig to list eth devs. Either, ifconfig eth0 192.168.1.10 # static ip route add default gw 192.168.1.254 # gateway Or, use dhcp client ifconfig eth0 up dhcpcd & About the kernel config problem, which version of uClinux-dist and nios2 patches do you use? You should disable SMC91 chip and select DM9000A with checksum offloading. Check if you have this file, linux-2.6.x/drivers/net/dm9ks.c .