Commit 779125c2 authored by Sebastian Siewior's avatar Sebastian Siewior Committed by Linus Torvalds

m68knommu: add some missing sections into the linker script

Add some missing sections into the linker script.
Those are required for spinlocks & kallsyms.
Signed-off-by: default avatarSebastian Siewior <bigeasy@linutronix.de>
Signed-off-by: default avatarGreg Ungerer <gerg@uclinux.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent f6054e21
...@@ -64,6 +64,7 @@ SECTIONS { ...@@ -64,6 +64,7 @@ SECTIONS {
_stext = . ; _stext = . ;
TEXT_TEXT TEXT_TEXT
SCHED_TEXT SCHED_TEXT
LOCK_TEXT
*(.text.lock) *(.text.lock)
. = ALIGN(16); /* Exception table */ . = ALIGN(16); /* Exception table */
...@@ -73,6 +74,7 @@ SECTIONS { ...@@ -73,6 +74,7 @@ SECTIONS {
*(.rodata) *(.rodata.*) *(.rodata) *(.rodata.*)
*(__vermagic) /* Kernel version magic */ *(__vermagic) /* Kernel version magic */
*(__markers_strings)
*(.rodata1) *(.rodata1)
*(.rodata.str1.1) *(.rodata.str1.1)
...@@ -182,6 +184,7 @@ SECTIONS { ...@@ -182,6 +184,7 @@ SECTIONS {
*(COMMON) *(COMMON)
. = ALIGN(4) ; . = ALIGN(4) ;
_ebss = . ; _ebss = . ;
_end = . ;
} > BSS } > BSS
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment