summaryrefslogtreecommitdiffstats
path: root/arch/x86/Kconfig
diff options
context:
space:
mode:
authorH. Peter Anvin2009-05-06 06:20:51 +0200
committerH. Peter Anvin2009-05-09 02:16:22 +0200
commit845adf7266a7ba6970bf982ffd96abc60d2018ab (patch)
treed27c42ba2b3b58dffcc0bfd8c3bf2ad7c161746b /arch/x86/Kconfig
parentkbuild: allow compressors (gzip, bzip2, lzma) to take multiple inputs (diff)
downloadkernel-qcow2-linux-845adf7266a7ba6970bf982ffd96abc60d2018ab.tar.gz
kernel-qcow2-linux-845adf7266a7ba6970bf982ffd96abc60d2018ab.tar.xz
kernel-qcow2-linux-845adf7266a7ba6970bf982ffd96abc60d2018ab.zip
x86: add a Kconfig symbol for when relocations are needed
We only need to build relocations when we are building a 32-bit relocatable kernel. Rather than unnecessarily complicating the Makefiles, make an explicit Kbuild symbol for this. [ Impact: permits future cleanup ] Signed-off-by: H. Peter Anvin <hpa@zytor.com> Cc: Sam Ravnborg <sam@ravnborg.org>
Diffstat (limited to 'arch/x86/Kconfig')
-rw-r--r--arch/x86/Kconfig5
1 files changed, 5 insertions, 0 deletions
diff --git a/arch/x86/Kconfig b/arch/x86/Kconfig
index 039c3f04aac5..5aee45356b58 100644
--- a/arch/x86/Kconfig
+++ b/arch/x86/Kconfig
@@ -1513,6 +1513,11 @@ config RELOCATABLE
it has been loaded at and the compile time physical address
(CONFIG_PHYSICAL_START) is ignored.
+# Relocation on x86-32 needs some additional build support
+config X86_NEED_RELOCS
+ def_bool y
+ depends on X86_32 && RELOCATABLE
+
config PHYSICAL_ALIGN
hex
prompt "Alignment value to which kernel should be aligned" if X86_32