diff options
author | Tom Rini <trini@konsulko.com> | 2019-10-25 17:33:28 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2019-10-25 17:33:28 -0400 |
commit | 15147dc6a96697880cf355ed9df127bd8c896f2c (patch) | |
tree | cb4f364950e04426e5631ce78a0eaa0dbc4d250b /cmd/booti.c | |
parent | 271103ac0b8ff627007f83d379927b60bcccb702 (diff) | |
parent | d0e134b909f75db080c9364bfb84d6bf1d724844 (diff) |
Merge branch '2019-10-24-ti-imports'
- Enable DFU on dra7xx boards
- Further Keystone 3 platform improvements
Diffstat (limited to 'cmd/booti.c')
-rw-r--r-- | cmd/booti.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/cmd/booti.c b/cmd/booti.c index c36b0235df8..841eff10d13 100644 --- a/cmd/booti.c +++ b/cmd/booti.c @@ -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)); /* |