mirror of
https://gitlab.com/apparmor/apparmor
synced 2025-08-22 01:57:43 +00:00
31 lines
944 B
Diff
31 lines
944 B
Diff
From: John Johansen <jjohansen@suse.de>
|
|
Subject: Add AppArmor LSM to security/Makefile
|
|
|
|
Signed-off-by: John Johansen <jjohansen@suse.de>
|
|
Signed-off-by: Andreas Gruenbacher <agruen@suse.de>
|
|
|
|
---
|
|
security/Kconfig | 1 +
|
|
security/Makefile | 1 +
|
|
2 files changed, 2 insertions(+)
|
|
|
|
--- a/security/Kconfig
|
|
+++ b/security/Kconfig
|
|
@@ -104,6 +104,7 @@ config SECURITY_ROOTPLUG
|
|
If you are unsure how to answer this question, answer N.
|
|
|
|
source security/selinux/Kconfig
|
|
+source security/apparmor/Kconfig
|
|
|
|
endmenu
|
|
|
|
--- a/security/Makefile
|
|
+++ b/security/Makefile
|
|
@@ -14,5 +14,6 @@ endif
|
|
obj-$(CONFIG_SECURITY) += security.o dummy.o inode.o
|
|
# Must precede capability.o in order to stack properly.
|
|
obj-$(CONFIG_SECURITY_SELINUX) += selinux/built-in.o
|
|
+obj-$(CONFIG_SECURITY_APPARMOR) += commoncap.o apparmor/
|
|
obj-$(CONFIG_SECURITY_CAPABILITIES) += commoncap.o capability.o
|
|
obj-$(CONFIG_SECURITY_ROOTPLUG) += commoncap.o root_plug.o
|