Messages in this thread |  | | Date | Tue, 8 Apr 2008 14:20:08 +0200 | From | Alexander van Heukelum <> | Subject | Re: [PATCH 1/2] boot: increase stack size for kernel boot loader decompressor |
| |
Hi Ingo,
I see you have applied the following patch to x86#for-akpm. It was really ment for testing only. I think you ment to use this one instead?
[PATCH 1/2] boot: increase stack size for kernel boot loader decompressor http://lkml.org/lkml/2008/3/25/497
Otherwise, please consider [PATCH] x86: cleanup boot-heap usage instead. http://lkml.org/lkml/2008/4/8/90
Greetings, Alexander
On Mon, Apr 07, 2008 at 11:44:34PM +0200, Alexander van Heukelum wrote: > diff --git a/arch/x86/boot/compressed/vmlinux_32.lds b/arch/x86/boot/compressed/vmlinux_32.lds > index bb3c483..c858e30 100644 > --- a/arch/x86/boot/compressed/vmlinux_32.lds > +++ b/arch/x86/boot/compressed/vmlinux_32.lds > @@ -39,5 +39,6 @@ SECTIONS > *(.bss.*) > *(COMMON) > _end = . ; > + _real_end = . + 0x4000; > } > } > diff --git a/arch/x86/boot/compressed/vmlinux_64.lds b/arch/x86/boot/compressed/vmlinux_64.lds > index 7e5c720..9bef3cd 100644 > --- a/arch/x86/boot/compressed/vmlinux_64.lds > +++ b/arch/x86/boot/compressed/vmlinux_64.lds > @@ -44,5 +44,6 @@ SECTIONS > pgtable = . ; > . = . + 4096 * 6; > _heap = .; > + _heap_end = . + 0x7000; > } > }
|  |