xref: /OK3568_Linux_fs/buildroot/package/audit/Config.in (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1*4882a593Smuzhiyun# audit has some builtin per-architecture system call tables
2*4882a593Smuzhiyunconfig BR2_PACKAGE_AUDIT_ARCH_SUPPORTS
3*4882a593Smuzhiyun	bool
4*4882a593Smuzhiyun	default y if BR2_aarch64 || BR2_arm || BR2_armeb || \
5*4882a593Smuzhiyun		BR2_i386 || BR2_powerpc || BR2_powerpc64 || \
6*4882a593Smuzhiyun		BR2_x86_64
7*4882a593Smuzhiyun
8*4882a593Smuzhiyunconfig BR2_PACKAGE_AUDIT
9*4882a593Smuzhiyun	bool "audit"
10*4882a593Smuzhiyun	depends on BR2_PACKAGE_AUDIT_ARCH_SUPPORTS
11*4882a593Smuzhiyun	depends on BR2_TOOLCHAIN_HAS_THREADS
12*4882a593Smuzhiyun	depends on !BR2_STATIC_LIBS
13*4882a593Smuzhiyun	help
14*4882a593Smuzhiyun	  The audit package contains the user space utilities for
15*4882a593Smuzhiyun	  storing and searching the audit records generated by
16*4882a593Smuzhiyun	  the audit subsystem in the Linux 2.6 kernel
17*4882a593Smuzhiyun
18*4882a593Smuzhiyun	  Note: The z/OS remote plugin is disabled in this package
19*4882a593Smuzhiyun
20*4882a593Smuzhiyun	  http://people.redhat.com/sgrubb/audit/
21*4882a593Smuzhiyun
22*4882a593Smuzhiyuncomment "audit needs a toolchain w/ threads, dynamic library"
23*4882a593Smuzhiyun	depends on !BR2_TOOLCHAIN_HAS_THREADS || BR2_STATIC_LIBS
24*4882a593Smuzhiyun	depends on BR2_PACKAGE_AUDIT_ARCH_SUPPORTS
25