diff options
Diffstat (limited to 'arch/x86_64/kernel/setup.c')
-rw-r--r-- | arch/x86_64/kernel/setup.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/arch/x86_64/kernel/setup.c b/arch/x86_64/kernel/setup.c index ff9620b800c0..a0e0c9ca8f10 100644 --- a/arch/x86_64/kernel/setup.c +++ b/arch/x86_64/kernel/setup.c | |||
@@ -35,6 +35,7 @@ | |||
35 | #include <asm/processor.h> | 35 | #include <asm/processor.h> |
36 | #include <linux/console.h> | 36 | #include <linux/console.h> |
37 | #include <linux/seq_file.h> | 37 | #include <linux/seq_file.h> |
38 | #include <linux/crash_dump.h> | ||
38 | #include <linux/root_dev.h> | 39 | #include <linux/root_dev.h> |
39 | #include <linux/pci.h> | 40 | #include <linux/pci.h> |
40 | #include <linux/acpi.h> | 41 | #include <linux/acpi.h> |
@@ -418,6 +419,14 @@ static __init void parse_cmdline_early (char ** cmdline_p) | |||
418 | } | 419 | } |
419 | #endif | 420 | #endif |
420 | 421 | ||
422 | #ifdef CONFIG_PROC_VMCORE | ||
423 | /* elfcorehdr= specifies the location of elf core header | ||
424 | * stored by the crashed kernel. This option will be passed | ||
425 | * by kexec loader to the capture kernel. | ||
426 | */ | ||
427 | else if(!memcmp(from, "elfcorehdr=", 11)) | ||
428 | elfcorehdr_addr = memparse(from+11, &from); | ||
429 | #endif | ||
421 | next_char: | 430 | next_char: |
422 | c = *(from++); | 431 | c = *(from++); |
423 | if (!c) | 432 | if (!c) |