projects
/
GitHub
/
moto-9609
/
android_kernel_motorola_exynos9610.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
aab1b16
)
sh: Add a .bss.page_aligned section for 4K stacks.
author
Paul Mundt
<lethal@linux-sh.org>
Thu, 12 Jul 2007 01:40:36 +0000
(10:40 +0900)
committer
Paul Mundt
<lethal@linux-sh.org>
Thu, 12 Jul 2007 01:40:36 +0000
(10:40 +0900)
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
arch/sh/kernel/vmlinux.lds.S
patch
|
blob
|
blame
|
history
diff --git
a/arch/sh/kernel/vmlinux.lds.S
b/arch/sh/kernel/vmlinux.lds.S
index 992c25ad377fb88d51ed80385bf4fdcf1a695059..0696402f446a28d5236eab374632fec28ccff4bb 100644
(file)
--- 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