6158928a4e
[Thomas: - remove S01audit, which isn't completely compliant with the Buildroot style. - make the package available only on architectures for which the system call tables are available, and add some comments about this in the .mk file.] Signed-off-by: Clayton Shotwell <clayton.shotwell@rockwellcollins.com> Signed-off-by: Matthew Weber <matthew.weber@rockwellcollins.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
23 lines
724 B
Plaintext
23 lines
724 B
Plaintext
# audit has some builtin per-architecture system call tables
|
|
config BR2_PACKAGE_AUDIT_ARCH_SUPPORTS
|
|
bool
|
|
default y if BR2_aarch64 || BR2_arm || BR2_armeb || \
|
|
BR2_i386 || BR2_powerpc || BR2_x86_64
|
|
|
|
config BR2_PACKAGE_AUDIT
|
|
bool "audit"
|
|
depends on BR2_PACKAGE_AUDIT_ARCH_SUPPORTS
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS
|
|
help
|
|
The audit package contains the user space utilities for
|
|
storing and searching the audit records generated by
|
|
the audit subsystem in the Linux 2.6 kernel
|
|
|
|
Note: The z/OS remote plugin is disabled in this package
|
|
|
|
http://people.redhat.com/sgrubb/audit/
|
|
|
|
comment "audit needs a toolchain w/ threads"
|
|
depends on !BR2_TOOLCHAIN_HAS_THREADS
|
|
depends on BR2_PACKAGE_AUDIT_ARCH_SUPPORTS
|