mirror of
https://github.com/torvalds/linux.git
synced 2026-07-27 09:36:22 +02:00
s390: Add .noinstr.text to boot and purgatory linker scripts
Upcoming changes will result in a .noinstr.text section within the boot and purgatory string.o binary. Explicitly add the new section to avoid orphaned warnings from the linker. Reviewed-by: Juergen Christ <jchrist@linux.ibm.com> Signed-off-by: Heiko Carstens <hca@linux.ibm.com> Signed-off-by: Alexander Gordeev <agordeev@linux.ibm.com>
This commit is contained in:
parent
bd9a200717
commit
1e3e4dc332
|
|
@ -31,6 +31,7 @@ SECTIONS
|
|||
_text = .; /* Text */
|
||||
*(.text)
|
||||
*(.text.*)
|
||||
*(.noinstr.text)
|
||||
INIT_TEXT
|
||||
_etext = . ;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -19,6 +19,7 @@ SECTIONS
|
|||
_text = .; /* Text */
|
||||
*(.text)
|
||||
*(.text.*)
|
||||
*(.noinstr.text)
|
||||
_etext = . ;
|
||||
}
|
||||
.rodata : {
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user