Hi All,
1. Using am335x SDK.
2. As given at the end of this link/wiki --- http://processors.wiki.ti.com/index.php/Linux_Core_U-Boot_User%27s_Guide,
In some cases we support loading SPL and U-Boot over the console UART. You will need to use the spl/u-boot-spl.bin and u-boot.img files to boot. As per the TRM, the file is to be loaded via the X-MODEM protocol at 115200 baud 8 stop bits no parity (same as using it for console). SPL in turn expects to be sent u-boot.img at the same rate but via Y-MODEM. An example session from the host PC, assuming console is on ttyUSB0 and already configured would be and the lrzsz package is installed
I ran the following cmd on my host,
sx -kb ./MLO ./u-boot.img < /dev/ttyUSB0 > /dev/ttyUSB0.
3. I got following prints,
Sending ./MLO, 843 blocks: Give your local XMODEM receive command now.
Bytes Sent: 108032 BPS:10880
Sending ./u-boot.img, 3045 blocks: Give your local XMODEM receive command now.
Xmodem sectors/kbytes sent: 0/ 0kRetry 0: Timeout on sector ACK
Retry 0: Timeout on sector ACK
Retry 0: Timeout on sector ACK
Retry 0: Timeout on sector ACK
Please tell me what I should do to successfully transfer the images and get uboot prompt. I used the images generated by typing - make am335x_evm
Regards,
Gangadhar