提交 e181127a 编写于 作者: P Paul Mundt

sh: Add a .bss.page_aligned section for 4K stacks.

Signed-off-by: NPaul Mundt <lethal@linux-sh.org>
上级 aab1b16a
......@@ -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
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册