s390/boot: vmlinux.lds.S: handle '.init.text'
authorNathan Chancellor <nathan@kernel.org>
Thu, 8 Feb 2024 00:14:57 +0000 (17:14 -0700)
committerHeiko Carstens <hca@linux.ibm.com>
Wed, 14 Feb 2024 12:50:52 +0000 (13:50 +0100)
When building with CONFIG_LD_ORPHAN_WARN after selecting
CONFIG_ARCH_HAS_LD_ORPHAN_WARN, there is a warning about the presence of
an '.init.text' section in arch/s390/boot:

  s390-linux-ld: warning: orphan section `.init.text' from `arch/s390/boot/sclp_early_core.o' being placed in section `.init.text'

arch/s390/boot/sclp_early_core.c includes a file from the main kernel
build, which picks up a usage of '__init' somewhere. For the
decompressed image, this section can just be coalesced into '.text'.

Signed-off-by: Nathan Chancellor <nathan@kernel.org>
Tested-by: Justin Stitt <justinstitt@google.com>
Link: https://lore.kernel.org/r/20240207-s390-lld-and-orphan-warn-v1-5-8a665b3346ab@kernel.org
Signed-off-by: Heiko Carstens <hca@linux.ibm.com>
arch/s390/boot/vmlinux.lds.S

index cb4e95c691ae06e8cc21e2c14cc2021eb889bbec..5692a72e9cd6d16a67a797efcc308b85510ee2a6 100644 (file)
@@ -31,6 +31,7 @@ SECTIONS
                _text = .;      /* Text */
                *(.text)
                *(.text.*)
+               INIT_TEXT
                _etext = . ;
        }
        .rodata : {