mirror of
https://github.com/team-infusion-developers/android_kernel_samsung_msm8976.git
synced 2024-11-01 10:33:27 +00:00
fe3a1be59c
The Makefile and Kconfig changes should be obvious. The monolithic build option is there to create an old-style z90crypt module for backward compatability to older distributions. Signed-off-by: Ralph Wuerthner <rwuerthn@de.ibm.com> Signed-off-by: Martin Schwidefsky <schwidefsky@de.ibm.com>
17 lines
374 B
Makefile
17 lines
374 B
Makefile
#
|
|
# S/390 crypto devices
|
|
#
|
|
|
|
ifdef CONFIG_ZCRYPT_MONOLITHIC
|
|
|
|
z90crypt-objs := zcrypt_mono.o ap_bus.o zcrypt_api.o \
|
|
zcrypt_pcica.o zcrypt_pcicc.o zcrypt_pcixcc.o zcrypt_cex2a.o
|
|
obj-$(CONFIG_ZCRYPT) += z90crypt.o
|
|
|
|
else
|
|
|
|
ap-objs := ap_bus.o
|
|
obj-$(CONFIG_ZCRYPT) += ap.o zcrypt_api.o zcrypt_pcicc.o zcrypt_pcixcc.o
|
|
obj-$(CONFIG_ZCRYPT) += zcrypt_pcica.o zcrypt_cex2a.o
|
|
|
|
endif
|