Skip to content
Snippets Groups Projects
Commit d3310842 authored by Peter Chubb's avatar Peter Chubb Committed by Marek Vasut
Browse files

Fix fastboot boot address


Fastboot loads an image at CONFIG_FASTBOOT_BUF_ADDR, but currently
tells do_bootm() to look for an image at $loadaddr.  This breaks if
CONFIG_FASTBOOT_BUF_ADDR is different from the current user-set
loadaddr.

Instead, tell do_bootm() to pick up the image where it was laoded.

Signed-off-by: default avatarPeter Chubb <peter.chubb@data61.csiro.au>
Reviewed-by: default avatarTom Rini <trini@konsulko.com>
Acked-by: default avatarSteve Rae <steve.rae@raedomain.com>
parent a11a5b8a
No related branches found
No related tags found
No related merge requests found
......@@ -561,7 +561,7 @@ static void do_bootm_on_complete(struct usb_ep *ep, struct usb_request *req)
puts("Booting kernel..\n");
sprintf(boot_addr_start, "0x%lx", load_addr);
sprintf(boot_addr_start, "0x%lx", CONFIG_FASTBOOT_BUF_ADDR);
do_bootm(NULL, 0, 2, bootm_args);
/* This only happens if image is somehow faulty so we start over */
......
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