Config.in 978 B

12345678910111213141516171819202122232425
  1. config BR2_PACKAGE_KEXEC_LITE
  2. bool "kexec-lite"
  3. depends on BR2_powerpc || BR2_powerpc64 || BR2_powerpc64le
  4. depends on !BR2_STATIC_LIBS # dtc, elfutils
  5. depends on BR2_USE_WCHAR # elfutils
  6. depends on BR2_TOOLCHAIN_HAS_THREADS # elfutils
  7. depends on BR2_TOOLCHAIN_USES_UCLIBC || BR2_TOOLCHAIN_USES_GLIBC # elfutils
  8. select BR2_PACKAGE_ELFUTILS
  9. select BR2_PACKAGE_DTC
  10. select BR2_PACKAGE_DTC_PROGRAMS
  11. help
  12. Kexec is a user space utiltity for loading another kernel
  13. and asking the currently running kernel to do something with
  14. it.
  15. This package is a tiny implementation of the kexec userspace
  16. components, for devicetree-based platforms.
  17. https://github.com/antonblanchard/kexec-lite
  18. comment "kexec-lite needs a uClibc or glibc toolchain w/ wchar, dynamic library, threads"
  19. depends on BR2_powerpc || BR2_powerpc64
  20. depends on BR2_STATIC_LIBS || !BR2_USE_WCHAR \
  21. || !BR2_TOOLCHAIN_HAS_THREADS \
  22. || !(BR2_TOOLCHAIN_USES_UCLIBC || BR2_TOOLCHAIN_USES_GLIBC)