0109ce76dd
In preparation for introducing v2 encryption policies which will find and derive encryption keys differently from the current v1 encryption policies, move the v1 policy-specific key setup code from keyinfo.c into keysetup_v1.c. Reviewed-by: Theodore Ts'o <tytso@mit.edu> Signed-off-by: Eric Biggers <ebiggers@google.com>
12 lines
235 B
Makefile
12 lines
235 B
Makefile
# SPDX-License-Identifier: GPL-2.0-only
|
|
obj-$(CONFIG_FS_ENCRYPTION) += fscrypto.o
|
|
|
|
fscrypto-y := crypto.o \
|
|
fname.o \
|
|
hooks.o \
|
|
keyinfo.o \
|
|
keysetup_v1.o \
|
|
policy.o
|
|
|
|
fscrypto-$(CONFIG_BLOCK) += bio.o
|