payloads/U-Boot: Correct start address

At present U-Boot crashes on entry as the start address is wrong. Fix it.

Signed-off-by: Simon Glass <sjg@chromium.org>
Change-Id: I65e32fbb4ffea04b99abe4dc5afccfacd06c986e
Reviewed-on: https://review.coreboot.org/c/coreboot/+/59603
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Arthur Heymans <arthur@aheymans.xyz>
This commit is contained in:
Simon Glass 2021-11-23 10:31:14 -07:00 committed by Felix Held
parent 2e6c9d6488
commit 6c59f377ec
1 changed files with 1 additions and 1 deletions

View File

@ -35,6 +35,6 @@ config PAYLOAD_FILE
default "payloads/external/U-Boot/build/u-boot.bin"
config PAYLOAD_OPTIONS
default "-l 0x1110000 -e 0x1110015"
default "-l 0x1110000 -e 0x1110000"
endif