commit | 62dd16e6a0228e047dfe5c8c453ccb5d33a0c78c | [log] [tgz] |
---|---|---|
author | Lokesh Vutla <lokeshvutla@ti.com> | Mon Oct 07 13:52:16 2019 +0530 |
committer | Tom Rini <trini@konsulko.com> | Fri Oct 25 17:33:21 2019 -0400 |
tree | eee118cf9850307fa98f5a6a0d86391a7400e717 | |
parent | b1f1b235ada044995cfb037dfce28be5dd078b5e [diff] |
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: Lokesh Vutla <lokeshvutla@ti.com>
diff --git a/cmd/booti.c b/cmd/booti.c index c36b023..841eff1 100644 --- a/cmd/booti.c +++ b/cmd/booti.c
@@ -48,6 +48,9 @@ } 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)); /*