I am trying to use an evaluation board with an OMAPL138 and Arago linux. I use the environment variable MACHINE "da850-omapl138-evm" to build Arago.
Then, I start my system with FileSystem and Kernel in two differents partitions on SD Card.
If I use the uImage provided with the evaluation board, the kernel boots correctly and the system starts. But If I use the uImage that I have built, the system stops after the message "Uncompressing Linux... done, booting the kernel".
I use the following U-Boot parameters:
bootdelay=3
baudrate=115200
bootfile="uImage"
ethaddr=00:08:ee:04:9c:55
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 probe 0; sf read 0xc0700000 0x80000 0x220000; bootm 0xc0700000; fi
bootargs=mem=28M console=ttyS2,115200n8 root=/dev/mmcblk0p2 rw rootwait ip=off
stdin=serial
stdout=serial
stderr=serial
ver=U-Boot 2009.11 (Jan 13 2011 - 01:05:37)
The bootcmd seems to work because the default uImage run. I tried to change console with ttyS0, ttyS1, tty02,.. but nothing change.
I also tryed to boot with the kernel in NOR flash, but nothing change..
Can someone help me please ??