[U-Boot] [RFC] [PATCH V2] arm: arm926ejs: use ELF relocations

Reinhard Meyer u-boot at emk-elektronik.de
Tue Oct 5 11:33:23 CEST 2010


Dear Heiko Schocher,
>> start = first entry, end = address AFTER last entry,
>> so it should be "blt", or?
> 
> Yep. But I think, ble is right ... we should know, why this
> entry is filled with 00000000

No, we want a loop through all entries:

start:	1st entry
	2nd entry
	...
	last entry
end:

so it must be:

for (p = start; p < end; p += 8)
	work;
and not 

for (p = start; p <= end; p += 8)
	work;

Reinhard



More information about the U-Boot mailing list