diff options
author | Richard Guy Briggs <rgb@redhat.com> | 2018-11-16 12:17:35 -0500 |
---|---|---|
committer | Paul Moore <paul@paul-moore.com> | 2018-11-19 16:29:50 -0500 |
commit | c8fc5d49c341805fee7fc295f2ea8a709f78aec4 (patch) | |
tree | 8bc5943fbbbab088423106c91b61519dcb49b843 /kernel/Makefile | |
parent | a2c97da11cdb973b752dd434aee9636ce10ee737 (diff) | |
download | linux-c8fc5d49c341805fee7fc295f2ea8a709f78aec4.tar.gz linux-c8fc5d49c341805fee7fc295f2ea8a709f78aec4.tar.bz2 linux-c8fc5d49c341805fee7fc295f2ea8a709f78aec4.zip |
audit: remove WATCH and TREE config options
Remove the CONFIG_AUDIT_WATCH and CONFIG_AUDIT_TREE config options since
they are both dependent on CONFIG_AUDITSYSCALL and force
CONFIG_FSNOTIFY.
Signed-off-by: Richard Guy Briggs <rgb@redhat.com>
Signed-off-by: Paul Moore <paul@paul-moore.com>
Diffstat (limited to 'kernel/Makefile')
-rw-r--r-- | kernel/Makefile | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/kernel/Makefile b/kernel/Makefile index 7343b3a9bff0..9dc7f519129d 100644 --- a/kernel/Makefile +++ b/kernel/Makefile @@ -76,9 +76,7 @@ obj-$(CONFIG_IKCONFIG) += configs.o obj-$(CONFIG_SMP) += stop_machine.o obj-$(CONFIG_KPROBES_SANITY_TEST) += test_kprobes.o obj-$(CONFIG_AUDIT) += audit.o auditfilter.o -obj-$(CONFIG_AUDITSYSCALL) += auditsc.o -obj-$(CONFIG_AUDIT_WATCH) += audit_watch.o audit_fsnotify.o -obj-$(CONFIG_AUDIT_TREE) += audit_tree.o +obj-$(CONFIG_AUDITSYSCALL) += auditsc.o audit_watch.o audit_fsnotify.o audit_tree.o obj-$(CONFIG_GCOV_KERNEL) += gcov/ obj-$(CONFIG_KCOV) += kcov.o obj-$(CONFIG_KPROBES) += kprobes.o |