summaryrefslogtreecommitdiffstats
path: root/rules/kexec-tools.in
blob: afb1f1d18cf860a1b85257372a06d7db977fcf3b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
## SECTION=shell_and_console

menuconfig KEXEC_TOOLS
	tristate
	select ZLIB if KEXEC_TOOLS_ZLIB
	prompt "kexec-tools                   "
	help
	  The kexec-tools are used to load a kernel in memory and reboot
	  into the kernel loaded in memory using the kexec system call.

if KEXEC_TOOLS

config KEXEC_TOOLS_ZLIB
	bool
	prompt "Use zlib"
	help
	  FIXME

config KEXEC_TOOLS_XEN
	bool
	depends on BROKEN
	prompt "Xen support"
	help
	  kexec has been ported to xen for the hypervisor and domain 0.

config KEXEC_TOOLS_KEXEC
	bool
	prompt "Install kexec"
	help
	  FIXME

config KEXEC_TOOLS_KDUMP
	bool
	prompt "Install kdump"
	help
	  Kdump is a kexec based crash dumping mechansim for Linux.
	  Its functionality is broken mainly into two components,
	  user space and kernel space. Kernel space patches are
	  already part of main line kernel tree. User space component
	  is nothing but a patch on top of existing kexec tools.

endif