Das U-boot is a GPL'd bootloader for embedded boards supporting multiple processor architectures.

learn more… | top users | synonyms (1)

4
votes
1answer
433 views

Pass large amount of binary data from u-boot to linux kernel

Have some issues with passing large amount of data (3 MB) from uboot to linux kernel 2.6.35.3 on imx50 ARM board. This data is required in kernel device driver probe function and then it should be ...
1
vote
7answers
3k views

loading u-Boot in memory instead of flashing it

In my ARM based custom board, I flash u-boot to NAND whenever I do changes on that. (putting some debug statements/modification). Is there any way to directly load the uboot image in RAM memory ...
6
votes
2answers
551 views

Reserving a portion of SDRAM to pass data between U-Boot and the Linux Kernel

How can I reserve a portion of SDRAM, say 4 bytes, to pass a flag between U-Boot and the Linux kernel so that this reserved memory location is not initialized by the linker and the value preserved ...
3
votes
1answer
1k views

how to make “if” and comparison statement in uboot?

i'm newbie in uboot and tftp programing based on this url, there is how to make if statement like this if imi $addr; then echo Image OK; else echo Image corrupted!!; fi and this is my "if" : ...
2
votes
1answer
161 views

Enabling Interrupts in U-boot for ARM cortex A-9

I am trying to configure a GPIO interrupt in the uboot, This it to test the Interrupt response time without any OS intervention (Bare-metal). I was able to configure the pin-muxing and also successful ...
0
votes
1answer
113 views

What all necessary argument required to boot Linux kernel

I am new to linux kernel and Try to understand booting of Linux kernel from the point it loaded into RAM,I would like to know after Linux image loaded into RAM ,How control is passed to this image ...
0
votes
1answer
200 views

How to run custom kernel on beaglebone?

I am starting kernel or operating system programming for beaglebone with TI - AM3359 SoC. I have written an assembly program to write some characters to the serial interface (just to start off with) ...