From db5d773965850b92d9598145c91169b67c4ce134 Mon Sep 17 00:00:00 2001 From: ligongshao Date: Mon, 5 Aug 2024 14:33:35 +0800 Subject: [PATCH] linux 5.10 add mac Signed-off-by: ligongshao Change-Id: Ia6375bf4c577f0ec60aa3dfedaff77349a5c2c1b --- fs/Kconfig | 2 ++ fs/Makefile | 1 + scripts/kconfig/lexer.l | 1 + 3 files changed, 4 insertions(+) diff --git a/fs/Kconfig b/fs/Kconfig index 3b4a3f49188a..82cda7291394 100644 --- a/fs/Kconfig +++ b/fs/Kconfig @@ -118,6 +118,8 @@ source "fs/crypto/Kconfig" source "fs/code_sign/Kconfig" +source "fs/dec/Kconfig" + source "fs/verity/Kconfig" source "fs/notify/Kconfig" diff --git a/fs/Makefile b/fs/Makefile index 5036d5691632..0185494c9a0c 100644 --- a/fs/Makefile +++ b/fs/Makefile @@ -35,6 +35,7 @@ obj-$(CONFIG_AIO) += aio.o obj-$(CONFIG_FS_DAX) += dax.o obj-$(CONFIG_FS_ENCRYPTION) += crypto/ obj-$(CONFIG_SECURITY_CODE_SIGN) += code_sign/ +obj-$(CONFIG_SECURITY_DEC) += dec/ obj-$(CONFIG_FS_VERITY) += verity/ obj-$(CONFIG_FILE_LOCKING) += locks.o obj-$(CONFIG_BINFMT_AOUT) += binfmt_aout.o diff --git a/scripts/kconfig/lexer.l b/scripts/kconfig/lexer.l index b5a1d31458f9..9f62ebaa3ea6 100644 --- a/scripts/kconfig/lexer.l +++ b/scripts/kconfig/lexer.l @@ -30,6 +30,7 @@ static const char *kconfig_white_list[] = { "drivers/staging/ucollection/Kconfig", "fs/proc/memory_security/Kconfig", "fs/code_sign/Kconfig", + "fs/dec/Kconfig", "security/container_escape_detection/Kconfig", }; -- Gitee