diff options
author | Kevin Hao <haokexin@gmail.com> | 2016-07-13 09:14:40 +0800 |
---|---|---|
committer | Michael Ellerman <mpe@ellerman.id.au> | 2016-07-19 20:17:07 +1000 |
commit | 27d1149667352772240655b65372a4294f992ea7 (patch) | |
tree | 8bf60406e6276da9013902bd4f09b6db3b6c2b89 /arch/powerpc/kernel/vmlinux.lds.S | |
parent | 4c91bd6eeabb004f283db8a6854b134e2a2de1bc (diff) | |
download | linux-27d1149667352772240655b65372a4294f992ea7.tar.bz2 |
powerpc/32: Remove RELOCATABLE_PPC32
It is seldom used in the kernel code and can be easily replaced by
either RELOCATABLE or PPC32. So there is no reason to keep a separate
kernel option for this.
Signed-off-by: Kevin Hao <haokexin@gmail.com>
Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
Diffstat (limited to 'arch/powerpc/kernel/vmlinux.lds.S')
-rw-r--r-- | arch/powerpc/kernel/vmlinux.lds.S | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/powerpc/kernel/vmlinux.lds.S b/arch/powerpc/kernel/vmlinux.lds.S index 2dd91f79de05..b5fba689fca6 100644 --- a/arch/powerpc/kernel/vmlinux.lds.S +++ b/arch/powerpc/kernel/vmlinux.lds.S @@ -165,7 +165,7 @@ SECTIONS . = ALIGN(8); .dynsym : AT(ADDR(.dynsym) - LOAD_OFFSET) { -#ifdef CONFIG_RELOCATABLE_PPC32 +#ifdef CONFIG_PPC32 __dynamic_symtab = .; #endif *(.dynsym) |