uboot 2015.04 can't obtain ip from dhcp

cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

uboot 2015.04 can't obtain ip from dhcp

Jump to solution
1,728 Views
leavs
Contributor IV

Hi,

I'm working on uboot 2015.04, want to boot uImage from tftp, but i cann't obtain ip from dhcp. i use AR8035 phy, follow is my error.

does everybody can help ?

pastedImage_1.png

Labels (1)
0 Kudos
1 Solution
1,048 Views
danielbujak
Contributor III

Correction. The change required in the same file is:

#define CONFIG_FEC_ENET_DEV        0

Still not sure how to configure this without changing the header file manually

View solution in original post

0 Kudos
2 Replies
1,049 Views
danielbujak
Contributor III

Correction. The change required in the same file is:

#define CONFIG_FEC_ENET_DEV        0

Still not sure how to configure this without changing the header file manually

0 Kudos
1,048 Views
danielbujak
Contributor III

I was able to get this working by defining CONFIG_CMD_NET in mx6ul_14x14_evk.h manually like so:

#ifndef CONFIG_CMD_NET
#define CONFIG_CMD_NET
#endif

I'm not sure how you're supposed to configure this though. It seems like normally it would be under "Command Line Interface" in the uboot-menuconfig however this option is not available in the uBoot version supplied by NXP.

Hopefully that's a workaround for you as well, but I'd like to know how we're supposed to enable this in the buildroot environment.

0 Kudos