Re: [PATCH 1/2] boot: increase stack size for kernel boot loader decompressor

From: Alexander van Heukelum
Date: Tue Apr 08 2008 - 08:21:42 EST


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;
> }
> }

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/