I am trying to boot a beaglebone xM following as closely as is possible the hands on with the SDK lab.
I am using this uEnv.txt
usbethaddr=00:E0:4C:53:44:58
ethaddr=00:E0:4C:53:44:58
autoload=no
hostname=BBxM
serverip=192.168.1.105
ipaddr=192.168.1.141
netmask=255.255.255.0
getway=192.168.0.1
console=ttyO2,115200n8
mpurate=auto
buddy=none
vram=12M
dvimode=1280x720MR-16@60
defaultdisplay=dvi
bootfile=uImage-beagleboard.bin
root=/dev/nfs rw
nfsroot=192.168.1.105:/home/beagle/ti-sdk-beagleboard-05.05.00.00/targenfs nolock rsize=1024 wsize=1024,v3
printenv; ip=192.168.1.141:192.168.1.105:192.168.1.1:255.255.255.0:BBxM:eth0:off
nfsargs=setenv bootargs console=${console} ${optargs} mpurate=${mpurate} buddy=${buddy} camera=${camera} vram=${vram} mapfb.mode=dvi:${dvimode} omapdss.def_disp=${defaultdisplay} root=${root} nfsroot=${nfsroot} ip=${ip}
loadkernel=dcache off; icache off;run nfsargs; usb reset; tftpboot ${bootfile}
uenvcmd=run loadkernel;run nfsargs;bootm ${loadaddr}
I am able to confirm over wireshark that nfs boot never hits the server.
Any thoughts?