Config.in 1.0 KB

123456789101112131415161718192021222324252627282930
  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_powerpc || BR2_powerpc64 || BR2_powerpc64le
  7. default y if BR2_s390x
  8. default y if BR2_sparc64
  9. comment "makedumpfile needs a uClibc or glibc toolchain w/ wchar, dynamic library, threads"
  10. depends on BR2_PACKAGE_MAKEDUMPFILE_ARCH_SUPPORTS
  11. depends on !BR2_USE_WCHAR || BR2_STATIC_LIBS \
  12. || !BR2_TOOLCHAIN_HAS_THREADS \
  13. || !(BR2_TOOLCHAIN_USES_UCLIBC || BR2_TOOLCHAIN_USES_GLIBC)
  14. config BR2_PACKAGE_MAKEDUMPFILE
  15. bool "makedumpfile"
  16. depends on BR2_PACKAGE_MAKEDUMPFILE_ARCH_SUPPORTS
  17. depends on BR2_TOOLCHAIN_HAS_THREADS
  18. depends on !BR2_STATIC_LIBS # dlopen
  19. depends on BR2_USE_WCHAR
  20. depends on BR2_TOOLCHAIN_USES_UCLIBC || BR2_TOOLCHAIN_USES_GLIBC
  21. select BR2_PACKAGE_BZIP2
  22. select BR2_PACKAGE_ELFUTILS
  23. select BR2_PACKAGE_XZ
  24. select BR2_PACKAGE_ZLIB
  25. help
  26. Makes a small dumpfile of kdump.
  27. https://github.com/makedumpfile/makedumpfile