Hi, If you press "enter" as soon as u power on the board it will stop at uboot prompt. Once it reaches there, you can issue tftp commands to load the binaries. Bellow commands worked for me, I am loading kernel/dts via tftp & mounting file system via nfs mount.
setenv ipaddr <board ip> setenv serverip <set host ip> tftpboot 0x88000000 <dtb file> tftpboot 0x82000000 <uimage> setenv bootargs console=ttyO0,115200n8 root=/dev/nfs rw nfsroot=<serverip>:/path/to/root_file_sys ip=<ipaddr>:::::eth0 bootm 0x82000000 - 0x88000000 Regards, -- For more options, visit http://beagleboard.org/discuss --- You received this message because you are subscribed to the Google Groups "BeagleBoard" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/beagleboard/5768985b-adb4-4173-8ee2-6b2c6695ffe6%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.
