From: Adam Duskett Date: Fri, 31 Jul 2020 20:40:55 +0000 (-0700) Subject: package/libselinux: enable kernel selinux support for ext3 images X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=2ccabaa405a09fe88e6442cebcb5f87ba9154624;p=buildroot.git package/libselinux: enable kernel selinux support for ext3 images If BR2_TARGET_ROOTFS_EXT2_3 is selected, enable the following kernel options: - CONFIG_EXT3_FS_SECURITY Signed-off-by: Adam Duskett Signed-off-by: Thomas Petazzoni --- diff --git a/package/libselinux/libselinux.mk b/package/libselinux/libselinux.mk index 77efe2d8e0..525f4fe9a2 100644 --- a/package/libselinux/libselinux.mk +++ b/package/libselinux/libselinux.mk @@ -118,6 +118,8 @@ define LIBSELINUX_LINUX_CONFIG_FIXUPS $(if $(BR2_TARGET_ROOTFS_EXT2), $(call KCONFIG_ENABLE_OPT,CONFIG_EXT2_FS_XATTR) $(call KCONFIG_ENABLE_OPT,CONFIG_EXT2_FS_SECURITY)) + $(if $(BR2_TARGET_ROOTFS_EXT2_3), + $(call KCONFIG_ENABLE_OPT,CONFIG_EXT3_FS_SECURITY)) endef $(eval $(generic-package))