Config.in 1.1 KB

12345678910111213141516171819202122232425262728293031
  1. config BR2_PACKAGE_MAKEDUMPFILE_ARCH_SUPPORTS
  2. bool
  3. default y if BR2_aarch64 || BR2_aarch64_be
  4. default y if BR2_arm || BR2_armeb
  5. default y if BR2_i386 || BR2_x86_64
  6. default y if BR2_mips64 || BR2_mips64el
  7. default y if BR2_powerpc || BR2_powerpc64 || BR2_powerpc64le
  8. default y if BR2_s390x
  9. default y if BR2_sparc64
  10. comment "makedumpfile needs a uClibc or glibc toolchain w/ wchar, dynamic library, threads"
  11. depends on BR2_PACKAGE_MAKEDUMPFILE_ARCH_SUPPORTS
  12. depends on !BR2_USE_WCHAR || BR2_STATIC_LIBS \
  13. || !BR2_TOOLCHAIN_HAS_THREADS \
  14. || !(BR2_TOOLCHAIN_USES_UCLIBC || BR2_TOOLCHAIN_USES_GLIBC)
  15. config BR2_PACKAGE_MAKEDUMPFILE
  16. bool "makedumpfile"
  17. depends on BR2_PACKAGE_MAKEDUMPFILE_ARCH_SUPPORTS
  18. depends on BR2_TOOLCHAIN_HAS_THREADS
  19. depends on !BR2_STATIC_LIBS # dlopen
  20. depends on BR2_USE_WCHAR
  21. depends on BR2_TOOLCHAIN_USES_UCLIBC || BR2_TOOLCHAIN_USES_GLIBC
  22. select BR2_PACKAGE_BZIP2
  23. select BR2_PACKAGE_ELFUTILS
  24. select BR2_PACKAGE_XZ
  25. select BR2_PACKAGE_ZLIB
  26. help
  27. Makes a small dumpfile of kdump.
  28. https://github.com/makedumpfile/makedumpfile