[U-Boot-Users]Re: [U-Boot-Users] uboot can't download files through tftp

mONStR Monstr at seznam.cz
Thu May 25 19:38:16 CEST 2006


Problem is in source code net\tftp.c. 

MAC address is set to zero. 
Set MAC address to broadcast. (all 0xf)

Old
memset(NetServerEther, 0, 6); - zero MAC

New
memset(NetServerEther, 0xff, 6); broadcast MAC

Michal Simek
Czech Technical University




More information about the U-Boot mailing list