mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-11-01 17:08:10 +00:00
290502bee2
When the userspace messaging (for the less common case of userspace key wrap/unwrap via ecryptfsd) is not needed, allow eCryptfs to build with it removed. This saves on kernel code size and reduces potential attack surface by removing the /dev/ecryptfs node. Signed-off-by: Kees Cook <keescook@chromium.org> Signed-off-by: Tyler Hicks <tyhicks@canonical.com>
10 lines
263 B
Makefile
10 lines
263 B
Makefile
#
|
|
# Makefile for the Linux eCryptfs
|
|
#
|
|
|
|
obj-$(CONFIG_ECRYPT_FS) += ecryptfs.o
|
|
|
|
ecryptfs-y := dentry.o file.o inode.o main.o super.o mmap.o read_write.o \
|
|
crypto.o keystore.o kthread.o debug.o
|
|
|
|
ecryptfs-$(CONFIG_ECRYPT_FS_MESSAGING) += messaging.o miscdev.o
|