Commit 870e5a00 authored by Paul Mackerras's avatar Paul Mackerras

PPC32: Page-align the data section of the boot wrapper.

This is needed for Open Firmware on older powermacs to be able to
load the wrapper.  Without this OF gives a "CLAIM failed" error.
parent 0dc4ac05
......@@ -39,7 +39,7 @@ SECTIONS
PROVIDE (etext = .);
/* Read-write section, merged into data segment: */
. = ALIGN(8);
. = ALIGN(4096);
.data :
{
*(.data)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment