2017-11-01 15:07:57 +01:00
|
|
|
# SPDX-License-Identifier: GPL-2.0
|
2011-03-09 14:13:22 -05:00
|
|
|
#
|
|
|
|
|
# Makefile for caching inode integrity data (iint)
|
|
|
|
|
#
|
|
|
|
|
|
|
|
|
|
obj-$(CONFIG_INTEGRITY) += integrity.o
|
|
|
|
|
|
2026-03-09 13:37:02 -07:00
|
|
|
integrity-y := iint.o
|
2014-07-02 15:42:19 +03:00
|
|
|
integrity-$(CONFIG_INTEGRITY_AUDIT) += integrity_audit.o
|
|
|
|
|
integrity-$(CONFIG_INTEGRITY_SIGNATURE) += digsig.o
|
|
|
|
|
integrity-$(CONFIG_INTEGRITY_ASYMMETRIC_KEYS) += digsig_asymmetric.o
|
2019-02-21 14:23:04 +01:00
|
|
|
integrity-$(CONFIG_INTEGRITY_PLATFORM_KEYRING) += platform_certs/platform_keyring.o
|
2022-01-25 21:58:28 -05:00
|
|
|
integrity-$(CONFIG_INTEGRITY_MACHINE_KEYRING) += platform_certs/machine_keyring.o
|
2019-02-21 14:23:04 +01:00
|
|
|
integrity-$(CONFIG_LOAD_UEFI_KEYS) += platform_certs/efi_parser.o \
|
2019-11-10 21:10:35 -06:00
|
|
|
platform_certs/load_uefi.o \
|
|
|
|
|
platform_certs/keyring_handler.o
|
2019-02-21 14:23:04 +01:00
|
|
|
integrity-$(CONFIG_LOAD_IPL_KEYS) += platform_certs/load_ipl_s390.o
|
2019-11-10 21:10:36 -06:00
|
|
|
integrity-$(CONFIG_LOAD_PPC_KEYS) += platform_certs/efi_parser.o \
|
|
|
|
|
platform_certs/load_powerpc.o \
|
|
|
|
|
platform_certs/keyring_handler.o
|
2026-02-13 09:28:46 +08:00
|
|
|
integrity-$(CONFIG_EFI) += efi_secureboot.o
|
2024-02-15 11:31:08 +01:00
|
|
|
# The relative order of the 'ima' and 'evm' LSMs depends on the order below.
|
2014-02-15 22:49:30 +01:00
|
|
|
obj-$(CONFIG_IMA) += ima/
|
|
|
|
|
obj-$(CONFIG_EVM) += evm/
|