My environment consists of an Ubuntu 10.04 virtual machine running on a Red Hat 5.4 host. I have a DM365 EVM, and I am trying to do a tftpboot from the image in the Ubuntu vm. The following is my setup and the attempt to boot the board:
DM365 EVM :>printenv
baudrate=115200
ethaddr=00:0e:99:02:ca:0b
bootdelay=10
env=gatewayip 192.168.1.2
stdin=serial
stdout=serial
stderr=serial
ver=U-Boot 1.3.4 (Mar 2 2009 - 11:50:39)
filesize=1F7640
fileaddr=80700000
netmask=255.255.0.0
ipaddr=192.168.1.4
bootargs=console=ttyS0,115200n8 noinitrd rw ip=192.168.1.4 root=/dev/nfs nfsroot=192.168.185.128:/home/manager/targetfs,nolock mem=76M video=davincifb:vid0=OFF:vid1=OFF:osd0=720x576x16,4050K dm365_imp.oper_mode=0 davinci_capture.device_type=4
bootcmd=dhcp; tftpboot 0x80700000 uImage-dm365-evm.bin; bootm 0x80700000
rootpath=/home/manager/targetfs
bootfile="uImage-dm365-evm.bin"
serverip=192.168.185.128
nfshost=192.168.185.128
gatewayip=192.168.1.2
Environment size: 688/262140 bytes
DM365 EVM :>tftpboot
TFTP from server 192.168.185.128; our IP address is 192.168.1.4
Filename 'uImage-dm365-evm.bin'.
Load address: 0x80700000
Loading: T T
The EVM IP is 192.168.1.4
The Red Hat host IP is 192.168.1.2
The Ubuntu VM IP is 192.168.185.128
I can boot from an image residing on the Red Hat host using a similar configuration.
Can anybody tell me how to get the boot image from the VM?