Skip to content

Commit

Permalink
m68knommu: add some missing sections into the linker script
Browse files Browse the repository at this point in the history
Add some missing sections into the linker script.
Those are required for spinlocks & kallsyms.

Signed-off-by: Sebastian Siewior <bigeasy@linutronix.de>
Signed-off-by: Greg Ungerer <gerg@uclinux.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
  • Loading branch information
Sebastian Siewior authored and Linus Torvalds committed May 1, 2008
1 parent f6054e2 commit 779125c
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions arch/m68knommu/kernel/vmlinux.lds.S
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@ SECTIONS {
_stext = . ;
TEXT_TEXT
SCHED_TEXT
LOCK_TEXT
*(.text.lock)

. = ALIGN(16); /* Exception table */
Expand All @@ -73,6 +74,7 @@ SECTIONS {

*(.rodata) *(.rodata.*)
*(__vermagic) /* Kernel version magic */
*(__markers_strings)
*(.rodata1)
*(.rodata.str1.1)

Expand Down Expand Up @@ -182,6 +184,7 @@ SECTIONS {
*(COMMON)
. = ALIGN(4) ;
_ebss = . ;
_end = . ;
} > BSS

}
Expand Down

0 comments on commit 779125c

Please sign in to comment.