mirror of
https://github.com/armbian/linux.git
synced 2026-01-06 10:13:00 -08:00
Match the optee_os version 1.5 or later. Main update features: 1.Support 32-bit client working with 64-bit linux kernel. 2.Fix Shared Memory protection. 3.Add mutex to serialize tee-supplicant request. 4.Revert "rename tee-supplicant to tee_supplicant". cherry-pick from 3.10 commit id:5f6467dc09e8c00f7fa6a621b3aad7046ae84d48 Change-Id: I5c77ed85aa56e36d346be7c4462c5a15120df439 Signed-off-by: sean.huang <sean.huang@rock-chips.com>
31 lines
949 B
Makefile
31 lines
949 B
Makefile
#
|
|
# Makefile for the kernel security code
|
|
#
|
|
|
|
obj-$(CONFIG_KEYS) += keys/
|
|
subdir-$(CONFIG_SECURITY_SELINUX) += selinux
|
|
subdir-$(CONFIG_SECURITY_SMACK) += smack
|
|
subdir-$(CONFIG_SECURITY_TOMOYO) += tomoyo
|
|
subdir-$(CONFIG_SECURITY_APPARMOR) += apparmor
|
|
subdir-$(CONFIG_SECURITY_YAMA) += yama
|
|
|
|
# always enable default capabilities
|
|
obj-y += commoncap.o
|
|
obj-$(CONFIG_MMU) += min_addr.o
|
|
|
|
# Object file lists
|
|
obj-$(CONFIG_SECURITY) += security.o
|
|
obj-$(CONFIG_SECURITYFS) += inode.o
|
|
obj-$(CONFIG_SECURITY_SELINUX) += selinux/
|
|
obj-$(CONFIG_SECURITY_SMACK) += smack/
|
|
obj-$(CONFIG_AUDIT) += lsm_audit.o
|
|
obj-$(CONFIG_SECURITY_TOMOYO) += tomoyo/
|
|
obj-$(CONFIG_SECURITY_APPARMOR) += apparmor/
|
|
obj-$(CONFIG_SECURITY_YAMA) += yama/
|
|
obj-$(CONFIG_CGROUP_DEVICE) += device_cgroup.o
|
|
obj-$(CONFIG_TEE_SUPPORT) += optee_linuxdriver/
|
|
|
|
# Object integrity file lists
|
|
subdir-$(CONFIG_INTEGRITY) += integrity
|
|
obj-$(CONFIG_INTEGRITY) += integrity/
|