diff options
author | Eric W. Biederman <ebiederm@xmission.com> | 2005-06-25 17:57:52 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-06-25 19:24:48 -0400 |
commit | d0537508a9921efced238b20967e50e519ac34af (patch) | |
tree | 80f2743e9299da07c07625af45807e16a7d7f85a /arch/x86_64/Kconfig | |
parent | 8a9190853c34289d9181acd9c620c76143bf88ca (diff) |
[PATCH] kexec: x86_64: add CONFIG_PHYSICAL_START
For one kernel to report a crash another kernel has created we need
to have 2 kernels loaded simultaneously in memory. To accomplish this
the two kernels need to built to run at different physical addresses.
This patch adds the CONFIG_PHYSICAL_START option to the x86_64 kernel
so we can do just that. You need to know what you are doing and
the ramifications are before changing this value, and most users
won't care so I have made it depend on CONFIG_EMBEDDED
bzImage kernels will work and run at a different address when compiled
with this option but they will still load at 1MB. If you need a kernel
loaded at a different address as well you need to boot a vmlinux.
Signed-off-by: Eric Biederman <ebiederm@xmission.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'arch/x86_64/Kconfig')
-rw-r--r-- | arch/x86_64/Kconfig | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/arch/x86_64/Kconfig b/arch/x86_64/Kconfig index a853d87ff7e3..56c02cf6397d 100644 --- a/arch/x86_64/Kconfig +++ b/arch/x86_64/Kconfig | |||
@@ -369,6 +369,17 @@ config X86_MCE_INTEL | |||
369 | Additional support for intel specific MCE features such as | 369 | Additional support for intel specific MCE features such as |
370 | the thermal monitor. | 370 | the thermal monitor. |
371 | 371 | ||
372 | config PHYSICAL_START | ||
373 | hex "Physical address where the kernel is loaded" if EMBEDDED | ||
374 | default "0x100000" | ||
375 | help | ||
376 | This gives the physical address where the kernel is loaded. | ||
377 | Primarily used in the case of kexec on panic where the | ||
378 | fail safe kernel needs to run at a different address than | ||
379 | the panic-ed kernel. | ||
380 | |||
381 | Don't change this unless you know what you are doing. | ||
382 | |||
372 | config SECCOMP | 383 | config SECCOMP |
373 | bool "Enable seccomp to safely compute untrusted bytecode" | 384 | bool "Enable seccomp to safely compute untrusted bytecode" |
374 | depends on PROC_FS | 385 | depends on PROC_FS |