1 # SPDX-License-Identifier: GPL-2.0 << 2 # 1 # 3 # Makefile for the kernel security code 2 # Makefile for the kernel security code 4 # 3 # 5 4 6 obj-$(CONFIG_KEYS) += key 5 obj-$(CONFIG_KEYS) += keys/ >> 6 subdir-$(CONFIG_SECURITY_SELINUX) += selinux >> 7 subdir-$(CONFIG_SECURITY_SMACK) += smack >> 8 subdir-$(CONFIG_SECURITY_TOMOYO) += tomoyo >> 9 subdir-$(CONFIG_SECURITY_APPARMOR) += apparmor >> 10 subdir-$(CONFIG_SECURITY_YAMA) += yama 7 11 8 # always enable default capabilities 12 # always enable default capabilities 9 obj-y += com 13 obj-y += commoncap.o 10 obj-$(CONFIG_SECURITY) += lsm << 11 obj-$(CONFIG_MMU) += min 14 obj-$(CONFIG_MMU) += min_addr.o 12 15 13 # Object file lists 16 # Object file lists 14 obj-$(CONFIG_SECURITY) += sec !! 17 obj-$(CONFIG_SECURITY) += security.o capability.o 15 obj-$(CONFIG_SECURITYFS) += ino 18 obj-$(CONFIG_SECURITYFS) += inode.o 16 obj-$(CONFIG_SECURITY_SELINUX) += sel !! 19 # Must precede capability.o in order to stack properly. 17 obj-$(CONFIG_SECURITY_SMACK) += sma !! 20 obj-$(CONFIG_SECURITY_SELINUX) += selinux/built-in.o 18 obj-$(CONFIG_SECURITY) += lsm !! 21 obj-$(CONFIG_SECURITY_SMACK) += smack/built-in.o 19 obj-$(CONFIG_SECURITY_TOMOYO) += tom !! 22 obj-$(CONFIG_AUDIT) += lsm_audit.o 20 obj-$(CONFIG_SECURITY_APPARMOR) += app !! 23 obj-$(CONFIG_SECURITY_TOMOYO) += tomoyo/built-in.o 21 obj-$(CONFIG_SECURITY_YAMA) += yam !! 24 obj-$(CONFIG_SECURITY_APPARMOR) += apparmor/built-in.o 22 obj-$(CONFIG_SECURITY_LOADPIN) += loa !! 25 obj-$(CONFIG_SECURITY_YAMA) += yama/built-in.o 23 obj-$(CONFIG_SECURITY_SAFESETID) += safe !! 26 obj-$(CONFIG_CGROUP_DEVICE) += device_cgroup.o 24 obj-$(CONFIG_SECURITY_LOCKDOWN_LSM) += loc << 25 obj-$(CONFIG_CGROUPS) += dev << 26 obj-$(CONFIG_BPF_LSM) += bpf << 27 obj-$(CONFIG_SECURITY_LANDLOCK) += lan << 28 obj-$(CONFIG_SECURITY_IPE) += ipe << 29 27 30 # Object integrity file lists 28 # Object integrity file lists 31 obj-$(CONFIG_INTEGRITY) += int !! 29 subdir-$(CONFIG_INTEGRITY) += integrity >> 30 obj-$(CONFIG_INTEGRITY) += integrity/built-in.o 32 31 33 subdir-$(CONFIG_CCSECURITY) += ccs 32 subdir-$(CONFIG_CCSECURITY) += ccsecurity 34 obj-$(CONFIG_CCSECURITY) += ccs !! 33 obj-$(CONFIG_CCSECURITY) += ccsecurity/built-in.o
Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.