From 5e799e1c94d3ce40162636f11741c5c383930edb Mon Sep 17 00:00:00 2001 From: "H. Peter Anvin" Date: Tue, 7 Jul 2009 17:02:44 -0700 Subject: [PATCH] core: give 64K to the PM stack Give a full aligned 64K chunk for the PM stack. Signed-off-by: H. Peter Anvin --- core/syslinux.ld | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/syslinux.ld b/core/syslinux.ld index d97cde5..23f74b2 100644 --- a/core/syslinux.ld +++ b/core/syslinux.ld @@ -21,7 +21,7 @@ EXTERN(_start) ENTRY(_start) STACK16_LEN = 4096; -STACK32_LEN = 32768; +STACK32_LEN = 65536; SECTIONS { @@ -278,7 +278,7 @@ SECTIONS __bss_len = __bss_end - __bss_start; __bss_dwords = (__bss_len + 3) >> 2; - . = ALIGN(128); + . = ALIGN(65536); /* XXX: This stack should be unified with the COM32 stack */ __stack_vma = .; -- 2.7.4