OXIESEC PANEL
- Current Dir:
/
/
usr
/
src
/
linux-headers-4.15.0-197
/
security
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
11/17/2022 06:42:18 AM
rwxr-xr-x
📄
Kconfig
16.48 KB
11/01/2022 04:52:05 PM
rw-r--r--
📄
Makefile
1.08 KB
11/01/2022 04:52:05 PM
rw-r--r--
📁
apparmor
-
11/17/2022 06:42:23 AM
rwxr-xr-x
📁
integrity
-
11/17/2022 06:42:23 AM
rwxr-xr-x
📁
keys
-
11/17/2022 06:42:23 AM
rwxr-xr-x
📁
loadpin
-
11/17/2022 06:42:23 AM
rwxr-xr-x
📁
selinux
-
11/17/2022 06:42:23 AM
rwxr-xr-x
📁
smack
-
11/17/2022 06:42:23 AM
rwxr-xr-x
📁
tomoyo
-
11/17/2022 06:42:23 AM
rwxr-xr-x
📁
yama
-
11/17/2022 06:42:23 AM
rwxr-xr-x
Editing: Makefile
Close
# SPDX-License-Identifier: GPL-2.0 # # 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 subdir-$(CONFIG_SECURITY_LOADPIN) += loadpin # 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_SECURITY_LOADPIN) += loadpin/ obj-$(CONFIG_CGROUP_DEVICE) += device_cgroup.o # Object integrity file lists subdir-$(CONFIG_INTEGRITY) += integrity obj-$(CONFIG_INTEGRITY) += integrity/ # Allow the kernel to be locked down obj-$(CONFIG_LOCK_DOWN_KERNEL) += lock_down.o