Skip to content

Tag: u-boot

modifying u-boot environment in kernel init

I’m trying to modify a u-boot env arg within the kernel code. I’ve found boot_command_line var in main.c and setup.c, which contains an arg, so that made me think it is possible, however, I coudn’t find where this var is being updated with the u-boot env arg value, or how to get a different …

How to print memory variable in U-boot?

i have the following lines in my U-boot environment: The comparison works. But how can i echo the contents of the memory address 10e00000? I tried to print in the failure handler: but when i print the environment i can see that it has replaced the variable with the memory address: How can i print the contents…

How u-boot start instruction is found by ROM Code

I am trying to understand ARM Linux Boot Process. These are the things I understood: When reset button is pressed in any processor, it jumps to the reset vector or address, in case of ARM it is either 0x00 or 0xFFFF0000. This location contains the start up code or ROM Code or Boot ROM Code My query is how thi…