Hi,
I am using the precompiled kernel from PSP-SDK-03.20.00.13 (images/kernel/omapl1x8/uImage), in a custom made board running a AM1808. The problem I am seeing is that the kernel seems to hang after "Starting Kernel". I have also tried with a custom compiled kernel, with the same results.
What could the reason for this be? Am I missing something very obvious?
I am using these boot commands, the console is connected to ttyS1:
U-Boot > printenv
bootargs=mem=32M console=ttyS1,115200n8 root=/dev/mmcblk0p2 rw rootwait ip=off
bootcmd=if mmc rescan 0; then if fatload mmc 0 0xc0600000 boot.scr; then source
0xc0600000; else fatload mmc 0 0xc0700000 uImage; bootm c0700000; fi; else sf pr
obe 0; sf read 0xc0700000 0x80000 0x220000; bootm 0xc0700000; fi
bootdelay=3
baudrate=115200
bootfile="uImage.bin"
stdin=serial
stdout=serial
stderr=serial
ver=U-Boot 2009.11 (Nov 17 2010 - 10:22:18)
U-Boot > fatload mmc 0 0xc0700000 uImage
reading uImage
2113724 bytes read
U-Boot > bootm 0xc0700000
## Booting kernel from Legacy Image at c0700000 ...
Image Name: Linux-2.6.33-rc4
Image Type: ARM Linux Kernel Image (uncompressed)
Data Size: 2113660 Bytes = 2 MB
Load Address: c0008000
Entry Point: c0008000
Verifying Checksum ... OK
Loading Kernel Image ... OK
OK
Starting kernel ...