Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 7d8d2ceb authored by Amir Samuelov's avatar Amir Samuelov
Browse files

platform: msm: add Per-File-Tagger (PFT) driver



This driver is part of the Per-File-Encryption (PFE) feature.
It allows to tag enterprise files and encrypt them
while keeping the user private files untagged and plain text.

Change-Id: I2ba8bffb2a8815991dc3994a1f94a0c52b937a25
Signed-off-by: default avatarNir Ofry <nofry@codeaurora.org>
Signed-off-by: default avatarAmir Samuelov <amirs@codeaurora.org>
parent 77a1f98a
Loading
Loading
Loading
Loading
+10 −0
Original line number Diff line number Diff line
@@ -159,6 +159,16 @@ config QCA1530
	  To compile this driver as a module, choose M here: the module
	  will be called qca1530.

config PFT
	bool "Per-File-Tagger driver"
	default n
	help
		This driver is used for tagging enterprise files.
		It is part of the Per-File-Encryption (PFE) feature.
		The driver is tagging files when created by
		registered application.
		Tagged files are encrypted using the dm-req-crypt driver.

config MSM_SPSS
	tristate "MSM SPSS driver"
	default n
+2 −1
Original line number Diff line number Diff line
@@ -3,7 +3,7 @@
#

ccflags-y += -Idrivers/misc/

ccflags-y += -Isecurity/selinux -Isecurity/selinux/include

obj-$(CONFIG_MSM_BUS_SCALING) += msm_bus/
obj-$(CONFIG_BUS_TOPOLOGY_ADHOC) += msm_bus/
@@ -19,6 +19,7 @@ obj-$(CONFIG_MSM_AVTIMER) += avtimer.o
obj-$(CONFIG_SSM) += ssm.o
obj-$(CONFIG_QPNP_REVID) += qpnp-revid.o
obj-$(CONFIG_QPNP_USB_DETECT) += qpnp-usbdetect.o
obj-$(CONFIG_PFT) += pft.o
obj-$(CONFIG_QCA1530) += qca1530.o
obj-$(CONFIG_KLM) += msm_klmd.o
obj-$(CONFIG_MSM_SPSS) += spss.o
Loading