Config.in 939 B

1234567891011121314151617181920212223242526272829303132
  1. config BR2_PACKAGE_KEXEC_ARCH_SUPPORTS
  2. bool
  3. default y
  4. depends on BR2_i386 || BR2_x86_64 || BR2_arm || BR2_armeb || \
  5. BR2_mips || BR2_mips64 || BR2_mipsel || BR2_mips64el || \
  6. BR2_powerpc || BR2_powerpc64 || BR2_powerpc64le || \
  7. BR2_sh4 || BR2_sh4a || BR2_aarch64 || BR2_s390x || BR2_m68k
  8. config BR2_PACKAGE_KEXEC
  9. bool "kexec"
  10. depends on BR2_PACKAGE_KEXEC_ARCH_SUPPORTS
  11. depends on BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_17 # memfd_create()
  12. help
  13. Kexec is a user space utility for loading another kernel
  14. and asking the currently running kernel to do something with
  15. it.
  16. https://www.kernel.org/pub/linux/utils/kernel/kexec/
  17. if BR2_PACKAGE_KEXEC
  18. config BR2_PACKAGE_KEXEC_ZLIB
  19. bool "zlib support"
  20. select BR2_PACKAGE_ZLIB
  21. help
  22. Support for compressed kernel images
  23. endif
  24. comment "kexec needs a toolchain w/ headers >= 3.17"
  25. depends on BR2_PACKAGE_KEXEC_ARCH_SUPPORTS
  26. depends on !BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_17