If BR2_TARGET_ROOTFS_EXT2 is selected, enable the following kernel options:
- CONFIG_EXT2_FS_XATTR
- CONFIG_EXT2_FS_SECURITY
Signed-off-by: Adam Duskett <Aduskett@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
$(if $(BR2_TARGET_ROOTFS_EROFS),
$(call KCONFIG_ENABLE_OPT,CONFIG_EROFS_FS_XATTR)
$(call KCONFIG_ENABLE_OPT,CONFIG_EROFS_FS_SECURITY))
+ $(if $(BR2_TARGET_ROOTFS_EXT2),
+ $(call KCONFIG_ENABLE_OPT,CONFIG_EXT2_FS_XATTR)
+ $(call KCONFIG_ENABLE_OPT,CONFIG_EXT2_FS_SECURITY))
endef
$(eval $(generic-package))