diff options
Diffstat (limited to 'arch/i386/Kconfig')
-rw-r--r-- | arch/i386/Kconfig | 33 |
1 files changed, 21 insertions, 12 deletions
diff --git a/arch/i386/Kconfig b/arch/i386/Kconfig index d849c6870e3a..554ce3f344c9 100644 --- a/arch/i386/Kconfig +++ b/arch/i386/Kconfig | |||
@@ -645,17 +645,6 @@ config SECCOMP | |||
645 | 645 | ||
646 | source kernel/Kconfig.hz | 646 | source kernel/Kconfig.hz |
647 | 647 | ||
648 | config PHYSICAL_START | ||
649 | hex "Physical address where the kernel is loaded" if EMBEDDED | ||
650 | default "0x100000" | ||
651 | help | ||
652 | This gives the physical address where the kernel is loaded. | ||
653 | Primarily used in the case of kexec on panic where the | ||
654 | fail safe kernel needs to run at a different address than | ||
655 | the panic-ed kernel. | ||
656 | |||
657 | Don't change this unless you know what you are doing. | ||
658 | |||
659 | config KEXEC | 648 | config KEXEC |
660 | bool "kexec system call (EXPERIMENTAL)" | 649 | bool "kexec system call (EXPERIMENTAL)" |
661 | depends on EXPERIMENTAL | 650 | depends on EXPERIMENTAL |
@@ -675,11 +664,31 @@ config KEXEC | |||
675 | 664 | ||
676 | config CRASH_DUMP | 665 | config CRASH_DUMP |
677 | bool "kernel crash dumps (EXPERIMENTAL)" | 666 | bool "kernel crash dumps (EXPERIMENTAL)" |
678 | depends on EMBEDDED | ||
679 | depends on EXPERIMENTAL | 667 | depends on EXPERIMENTAL |
680 | depends on HIGHMEM | 668 | depends on HIGHMEM |
681 | help | 669 | help |
682 | Generate crash dump after being started by kexec. | 670 | Generate crash dump after being started by kexec. |
671 | |||
672 | config PHYSICAL_START | ||
673 | hex "Physical address where the kernel is loaded" if (EMBEDDED || CRASH_DUMP) | ||
674 | |||
675 | default "0x1000000" if CRASH_DUMP | ||
676 | default "0x100000" | ||
677 | help | ||
678 | This gives the physical address where the kernel is loaded. Normally | ||
679 | for regular kernels this value is 0x100000 (1MB). But in the case | ||
680 | of kexec on panic the fail safe kernel needs to run at a different | ||
681 | address than the panic-ed kernel. This option is used to set the load | ||
682 | address for kernels used to capture crash dump on being kexec'ed | ||
683 | after panic. The default value for crash dump kernels is | ||
684 | 0x1000000 (16MB). This can also be set based on the "X" value as | ||
685 | specified in the "crashkernel=YM@XM" command line boot parameter | ||
686 | passed to the panic-ed kernel. Typically this parameter is set as | ||
687 | crashkernel=64M@16M. Please take a look at | ||
688 | Documentation/kdump/kdump.txt for more details about crash dumps. | ||
689 | |||
690 | Don't change this unless you know what you are doing. | ||
691 | |||
683 | endmenu | 692 | endmenu |
684 | 693 | ||
685 | 694 | ||