Geert Uytterhoeven <[email protected]> writes: > On Wed, Sep 16, 2009 at 18:44, Tim Abbott <[email protected]> wrote: >> Signed-off-by: Tim Abbott <[email protected]> >> Cc: Geert Uytterhoeven <[email protected]> >> Cc: Roman Zippel <[email protected]> >> Cc: [email protected] >> Cc: Sam Ravnborg <[email protected]> > > This patch must do something wrong, as it now fails to boot on ARAnyM: > > | CPU: Double bus fault detected ! > | CPU: Halting > > Haven't investigated why yet, though...
The problem is that _end no longer matches the end of the load segment. Previously, the .data.init_task section was the last allocated item in the linker script, now the last item is an align. This align does not affect the memsize of the segment. The startup code expects the boot info to be placed at _end, but the boot loader puts it at the end of the load segment, which is the best it can do. Andreas. -- Andreas Schwab, [email protected] GPG Key fingerprint = 58CA 54C7 6D53 942B 1756 01D3 44D5 214B 8276 4ED5 "And now for something completely different." -- To unsubscribe from this list: send the line "unsubscribe linux-m68k" in the body of a message to [email protected] More majordomo info at http://vger.kernel.org/majordomo-info.html
