summaryrefslogtreecommitdiff
path: root/core/syslinux.ld
diff options
context:
space:
mode:
authorH. Peter Anvin <hpa@zytor.com>2009-07-07 17:02:44 -0700
committerH. Peter Anvin <hpa@zytor.com>2009-07-07 17:02:44 -0700
commit5e799e1c94d3ce40162636f11741c5c383930edb (patch)
tree3a07ce6745bedf41bb5ee5db4d24d489a223e865 /core/syslinux.ld
parent5c692f4f90e41508774d751b53f72d3086067e4e (diff)
downloadsyslinux-5e799e1c94d3ce40162636f11741c5c383930edb.tar.gz
core: give 64K to the PM stack
Give a full aligned 64K chunk for the PM stack. Signed-off-by: H. Peter Anvin <hpa@zytor.com>
Diffstat (limited to 'core/syslinux.ld')
-rw-r--r--core/syslinux.ld4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/syslinux.ld b/core/syslinux.ld
index d97cde54..23f74b2f 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 = .;