How to boot and run (without flashing) on the K2H board?
This thread has been locked.
If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.
For Booting into Linux from U-Boot using NFS from the Host PC, the following prerequisites need to be done.
Steps
Now, Kindly follow the steps.
//Load default environment variables
# env default -f -a
//If device(EVM) IP address is set through dhcp
# setenv autoload no
# dhcp
//If device(EVM) IP address has to be set manually
# setenv ipaddr 192.168.2.250
# setenv gatewayip 192.168.2.1
# setenv netmask 255.255.255.0
//set tftp serer ip
# setenv serverip 192.168.2.252
# setenv bootcmd 'tftpboot 0x82000000 zImage-k2hk-evm;tftpboot 0x87000000 skern-k2hk.bin;mon_install 0x87000000;tftpboot 0x88000000 keystone-k2hk-evm.dtb;bootz 0x82000000 - 0x88000000'
# setenv bootargs 'earlyprintk debug console=ttyS0,115200n8 ip=192.168.2.25:::::eth0:off rootwait=1 root=/dev/nfs nfsroot=192.168.2.21:/home/tidev/ti-processor-sdk-linux-k2hk-evm-06.03.00.106/targetNFS,v3,tcp rw'
# saveenv //make local variables into environment variables
# ping ${serverip}
# boot




Thanks,
Ranjeet