[U-Boot] [PATCH 03/20] x86: Make the upper bound on relocated symbols closed instead of open

Simon Glass sjg at chromium.org
Sat Nov 3 22:41:25 CET 2012


From: Gabe Black <gabeblack at chromium.org>

This seems to be a bug.

Signed-off-by: Simon Glass <sjg at chromium.org>
---
 arch/x86/lib/relocate.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/arch/x86/lib/relocate.c b/arch/x86/lib/relocate.c
index c0b9b29..23edca9 100644
--- a/arch/x86/lib/relocate.c
+++ b/arch/x86/lib/relocate.c
@@ -80,7 +80,7 @@ int do_elf_reloc_fixups(void)
 
 			/* Check that the target points into .text */
 			if (*offset_ptr_ram >= CONFIG_SYS_TEXT_BASE &&
-					*offset_ptr_ram <
+					*offset_ptr_ram <=
 					(CONFIG_SYS_TEXT_BASE + size)) {
 				*offset_ptr_ram += gd->reloc_off;
 			}
-- 
1.7.7.3



More information about the U-Boot mailing list