Hi,
I am setting up a development environment using the Logic PD "Zoom" am3517 evm.
The goal here is to get to the point where I can have an NFS mounted file system to run application code from.
On the way to that, I have been trying to tftpboot (from u-boot) an image from my Ubuntu VM host machine, and I can't get that to work.
If I let the am3517 boot all the way up in Arago linux from the MMC, I can telnet into it. And from that telnet connection, I can tftp a test file down to my target board from my host system. SO I am pretty sure my host TFTP server is working correctly.
Here is what it looks like in u-boot:
ipaddr=192.168.1.138
serverip=192.168.1.141
ethaddr=08:00:28:0F:49:DC
Environment size: 929/131068 bytes
AM3517_EVM # tftpboot 0x82000000 testx.txt
Using DaVinci EMAC device
TFTP from server 192.168.1.141; our IP address is 192.168.1.138
Filename 'testx.txt'.
Load address: 0x82000000
Loading: T T T T T
Abort
The first few lines are the tail of a printenv, showing how I have ipaddr, serverip and etchaddr set.
The "T T T T"'s are tftp timing out, as I understand it.
When I fully boot Arago, and do a tftp transfer, I can see tftp activity in my Ubuntu daemon.log.
Nothing shows up there when I am trying to tftpboot from u-boot, however.
This makes me think that there is perhaps some connectivity problem from u-boot, that's being resolved by the time full Arago is up and running on the target.
Does anyone have any suggestions for things I can try, logs I can look at, etc., to diagnose this problem?
Thanks!
== dj