Hi,
I got an overview of u-boot and understood about u-boot handling. Now for further study I started experimenting how to make u-boot to run an application.
So i created a boot partition copied MLO, u-boot and a .out cross-compiled exe. I copied the exe in memory location 0x82000000
with load 0:0 0x82000000 hello_world (first 0 being the sd card and second 0 is the root partition)
Then started the application as go 82000000 but the terminal didn't responded for like 5-10 minutes and I was forced to reset the board. How to debug things in these kind off situations?
The program is a simple hello world program. Initially i tried to go through the Makefile of u-boot/examples/standalone to understand the process of compilation but its bit tough for me so i just cross-compiled using arm toolchain.
Now I am stuck at why I am not able to see the output over the console. Also if I need to u-boot to run it automatically then I need to create a script for this or I have to put it in u-env.txt ?