@@ -4,7 +4,10 @@
CFLAGS_ptrace.o += -DUTS_MACHINE='"$(UTS_MACHINE)"'
+ccflags-y += -fno-function-sections -fno-data-sections
+
subdir-ccflags-$(CONFIG_PPC_WERROR) := -Werror
+subdir-ccflags-y += -fno-function-sections -fno-data-sections
ifeq ($(CONFIG_PPC64),y)
CFLAGS_prom_init.o += $(NO_MINIMAL_TOC)
@@ -50,7 +50,7 @@ SECTIONS
HEAD_TEXT
_text = .;
/* careful! __ftr_alt_* sections need to be close to .text */
- *(.text .fixup __ftr_alt_* .ref.text)
+ *(.text .text.* .fixup __ftr_alt_* .ref.text)
SCHED_TEXT
LOCK_TEXT
KPROBES_TEXT
@@ -2,6 +2,7 @@ config PPC64
bool "64-bit kernel"
default n
select THIN_ARCHIVES
+ select LD_DEAD_CODE_DATA_ELIMINATION
select ZLIB_DEFLATE
help
This option selects whether a 32-bit or a 64-bit kernel
Signed-off-by: Nicholas Piggin <npiggin@gmail.com> --- arch/powerpc/kernel/Makefile | 3 +++ arch/powerpc/kernel/vmlinux.lds.S | 2 +- arch/powerpc/platforms/Kconfig.cputype | 1 + 3 files changed, 5 insertions(+), 1 deletion(-)