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