From: Paul Mundt Date: Thu, 12 Jul 2007 01:40:36 +0000 (+0900) Subject: sh: Add a .bss.page_aligned section for 4K stacks. X-Git-Tag: v2.6.23-rc1~785^2~8 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=e181127a7a12c5d8e29afa19d235b53bf4140cb3;p=karo-tx-linux.git sh: Add a .bss.page_aligned section for 4K stacks. Signed-off-by: Paul Mundt --- diff --git a/arch/sh/kernel/vmlinux.lds.S b/arch/sh/kernel/vmlinux.lds.S index 992c25ad377f..0696402f446a 100644 --- a/arch/sh/kernel/vmlinux.lds.S +++ b/arch/sh/kernel/vmlinux.lds.S @@ -103,14 +103,14 @@ SECTIONS __machvec_end = .; . = ALIGN(PAGE_SIZE); - __init_end = .; - - . = ALIGN(4); - __bss_start = .; /* BSS */ - .bss : { *(.bss) } - - . = ALIGN(4); - _end = . ; + .bss : { + __init_end = .; + __bss_start = .; /* BSS */ + *(.bss.page_aligned) + *(.bss) + . = ALIGN(4); + _end = . ; + } /* When something in the kernel is NOT compiled as a module, the * module cleanup code and data are put into these segments. Both