Skip to content
Snippets Groups Projects
Commit 683cdd68 authored by Lokesh Vutla's avatar Lokesh Vutla Committed by Tom Rini
Browse files

cmd: booti: Store OS start and end info in images structure


Store the start and end of the OS image that is loaded in images
structure.

Signed-off-by: default avatarLokesh Vutla <lokeshvutla@ti.com>
parent 899a9de3
No related branches found
No related tags found
No related merge requests found
......@@ -48,6 +48,9 @@ static int booti_start(cmd_tbl_t *cmdtp, int flag, int argc,
}
images->ep = relocated_addr;
images->os.start = relocated_addr;
images->os.end = relocated_addr + image_size;
lmb_reserve(&images->lmb, images->ep, le32_to_cpu(image_size));
/*
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment