I want to setup my beaglebone board to tftp my application from my windows host machine using a static IP and not DHCP which appears to be the default configuration. The beaglebone does not appear to have a boot.cmd file to modify and I'm not sure what ethernet parameters to use for this board.
Looking for some assistance on where and how to configure the beaglebone board with a statis IP of 10.0.0.3 and what changes are needed to tftp from host IP of 10.0.0.1
Thanks
use u-boot setenv commands to setup serverip, ipaddr, and tftp to get the app
setenv serverip 10.0.0.1
setenv ipaddr 10.0.0.3
then tftp
tftp 0x8200000 10.0.0.1:application
hope this helps
Regards
Gururaja
Does this help with your question? If not, please send back more information. If it answers your question, please click the Verify Answer button.
Hi Sid,
This section will help you in creating a env file (like boot.cmd)
http://processors.wiki.ti.com/index.php/AM335x_U-Boot_User%27s_Guide#ENV_on_SD_card_using_uEnv.txt
AnilKumar
Please mark this Forum post as answered via the Verify Answer button below if it helps answer your question. Thanks!