aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGreg KH2005-07-07 16:37:53 -0500
committerChris Wright2005-07-08 20:48:41 -0500
commitb67dbf9d4c1987c370fd18fdc4cf9d8aaea604c2 (patch)
tree76c8bf2d44a9e8b3fb8df8dedf950bbb78d340ae /security/Makefile
parent043d051615aa5da09a7e44f1edbb69798458e067 (diff)
downloadam43-linux-kernel-b67dbf9d4c1987c370fd18fdc4cf9d8aaea604c2.tar.gz
am43-linux-kernel-b67dbf9d4c1987c370fd18fdc4cf9d8aaea604c2.tar.xz
am43-linux-kernel-b67dbf9d4c1987c370fd18fdc4cf9d8aaea604c2.zip
[PATCH] add securityfs for all LSMs to use
Here's a small patch against 2.6.13-rc2 that adds securityfs, a virtual fs that all LSMs can use instead of creating their own. The fs should be mounted at /sys/kernel/security, and the fs creates that mount point. This will make the LSB people happy that we aren't creating a new /my_lsm_fs directory in the root for every different LSM. It has changed a bit since the last version, thanks to comments from Mike Waychison. Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de> Signed-off-by: Chris Wright <chrisw@osdl.org>
Diffstat (limited to 'security/Makefile')
-rw-r--r--security/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/security/Makefile b/security/Makefile
index 197cc2f3f1e..8cbbf2f3670 100644
--- a/security/Makefile
+++ b/security/Makefile
@@ -11,7 +11,7 @@ obj-y += commoncap.o
11endif 11endif
12 12
13# Object file lists 13# Object file lists
14obj-$(CONFIG_SECURITY) += security.o dummy.o 14obj-$(CONFIG_SECURITY) += security.o dummy.o inode.o
15# Must precede capability.o in order to stack properly. 15# Must precede capability.o in order to stack properly.
16obj-$(CONFIG_SECURITY_SELINUX) += selinux/built-in.o 16obj-$(CONFIG_SECURITY_SELINUX) += selinux/built-in.o
17obj-$(CONFIG_SECURITY_CAPABILITIES) += commoncap.o capability.o 17obj-$(CONFIG_SECURITY_CAPABILITIES) += commoncap.o capability.o