1
0
mirror of https://git.yoctoproject.org/meta-ti synced 2026-05-06 19:39:17 +00:00

u-boot 2011.10rc: fatload does not set loadaddr, so be explicit

Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
This commit is contained in:
Koen Kooi
2011-11-08 15:11:32 +01:00
parent 25abc3e86d
commit 3bce82727a
2 changed files with 3 additions and 3 deletions

View File

@@ -31,7 +31,7 @@ index 56e36da..8c0fae2 100755
"mmc_boot=run mmc_args; " \
"run mmc_load_uimage; " \
- "bootm ${loadaddr}\0" \
+ "bootm\0" \
+ "bootm 0x80007fc0\0" \
"nand_boot=echo Booting from nand ...; " \
"run nand_args; " \
"nand read.i ${loadaddr} ${nand_src_addr} ${nand_img_siz}; " \
@@ -40,7 +40,7 @@ index 56e36da..8c0fae2 100755
"if run mmc_load_uimage; then " \
"run mmc_args;" \
- "bootm ${loadaddr};" \
+ "bootm;" \
+ "bootm 0x80007fc0;" \
"fi;" \
"fi;" \
"run nand_boot;" \

View File

@@ -4,7 +4,7 @@ require u-boot.inc
COMPATIBLE_MACHINE = "(ti33x)"
DEFAULT_PREFERENCE_ti33x = "99"
PV = "2011.09+git"
PR = "r22"
PR = "r23"
# SPL build
UBOOT_BINARY = "u-boot.img"