Added pfk_ice_virt.c which sends hab requests to BE in host, instead of sending scm calls directly to TZ. Also, removed the hardcoded size of key cache table, and made it configurable. Change-Id: I942c3886c2fb93846bcdf15b19eabb3bc83e05ba Signed-off-by: Shay <shayn@codeaurora.org>
16 lines
379 B
Makefile
16 lines
379 B
Makefile
#
|
|
# Makefile for the MSM specific security device drivers.
|
|
#
|
|
|
|
ccflags-y += -Isecurity/selinux -Isecurity/selinux/include
|
|
ccflags-y += -Ifs/crypto
|
|
ccflags-y += -Idrivers/misc
|
|
|
|
obj-$(CONFIG_PFT) += pft.o
|
|
obj-$(CONFIG_PFK) += pfk.o pfk_kc.o pfk_ext4.o pfk_f2fs.o
|
|
ifdef CONFIG_PFK_VIRTUALIZED
|
|
obj-$(CONFIG_PFK_VIRTUALIZED) += pfk_ice_virt.o
|
|
else
|
|
obj-$(CONFIG_PFK) += pfk_ice.o
|
|
endif
|