projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f6054e2
)
m68knommu: add some missing sections into the linker script
author
Sebastian Siewior
<
[email protected]
>
Thu, 1 May 2008 02:16:46 +0000
(12:16 +1000)
committer
Linus Torvalds
<
[email protected]
>
Thu, 1 May 2008 15:08:35 +0000
(08:08 -0700)
Add some missing sections into the linker script.
Those are required for spinlocks & kallsyms.
Signed-off-by: Sebastian Siewior <
[email protected]
>
Signed-off-by: Greg Ungerer <
[email protected]
>
Signed-off-by: Linus Torvalds <
[email protected]
>
arch/m68knommu/kernel/vmlinux.lds.S
patch
|
blob
|
history
diff --git
a/arch/m68knommu/kernel/vmlinux.lds.S
b/arch/m68knommu/kernel/vmlinux.lds.S
index b44edb08e21276f3dce89e8b938c4e6a5252596c..5592e0bf951f555f9efb18c55838215b80cc9db8 100644
(file)
--- a/
arch/m68knommu/kernel/vmlinux.lds.S
+++ b/
arch/m68knommu/kernel/vmlinux.lds.S
@@
-64,6
+64,7
@@
SECTIONS {
_stext = . ;
TEXT_TEXT
SCHED_TEXT
+ LOCK_TEXT
*(.text.lock)
. = ALIGN(16); /* Exception table */
@@
-73,6
+74,7
@@
SECTIONS {
*(.rodata) *(.rodata.*)
*(__vermagic) /* Kernel version magic */
+ *(__markers_strings)
*(.rodata1)
*(.rodata.str1.1)
@@
-182,6
+184,7
@@
SECTIONS {
*(COMMON)
. = ALIGN(4) ;
_ebss = . ;
+ _end = . ;
} > BSS
}