Hi,
We are using Leopard TMS320DM365 based board. We have downloaded RidgeRun Leopard Board DM365 Evaluation SDK from RidgeRun download centre.
We are able to get u-boot prompt.The serial console is working fine.
Now we want to run Linux from u-boot prompt (using bootm). We have followed the following process:
1. Load the uImage via TFTP transfer uImage to suitable memory location.
DM365_WebCam>tftp 0x82000000 kernel.uImage.root.leopard
TFTP from server 192.168.1.25; our IP address is 192.168.1.101
Filename 'kernel.uImage.root.leopard'.
Load address: 0x82000000
Loading: #################################################################
#################################################################
#################################################################
#################################################################
#################################################################
#################################################################
#################################################################
#################################################################
#################################################################
#################################################################
#################################################################
#################################################################
#################################################################
####################
done
Bytes transferred = 4427968 (4390c0 hex)
2. When we execute "bootm 0x82000000" command it gives the "Starting kernel ...". After that nothing is printed in the serial console.
DM365_WebCam>bootm 0x82000000
## Booting kernel from Legacy Image at 82000000 ...
Image Name: "RR Linux Kernel"
Image Type: ARM Linux Kernel Image (uncompressed)
Data Size: 4427904 Bytes = 4.2 MB
Load Address: 80008000
Entry Point: 80008000
Verifying Checksum ... OK
Loading Kernel Image ... OK
OK
Starting kernel ...
Note: I use the following boot arguments:
bootargs=mem=60M console=ttyS0,115200n8 root=/dev/nfs rw nfsroot=192.168.1.25:/home/ashwani/project/dm365_ridgerun/backup/trunk/fs/fs
Pls help me where should I investigate to get Linux serial data.