Config.in 568 B

12345678910111213141516171819202122232425262728293031
  1. menu "Configuration"
  2. depends on PACKAGE_kexec-tools
  3. config KEXEC_TOOLS_TARGET_NAME
  4. string
  5. prompt "Target name for kexec kernel"
  6. default EXTRA_TARGET_ARCH_NAME if powerpc64
  7. default ARCH
  8. help
  9. Defines the target type of the kernels that kexec deals
  10. with. This should be the target specification of
  11. the kernel you're booting.
  12. config KEXEC_TOOLS_kdump
  13. bool
  14. prompt "kdump support"
  15. default n
  16. help
  17. Include the kdump utility.
  18. config KEXEC_ZLIB
  19. bool
  20. prompt "zlib support"
  21. default y
  22. config KEXEC_LZMA
  23. bool
  24. prompt "lzma support"
  25. default n
  26. endmenu