From 6f65c4ba66dc68d0039166f6cba922e857d124bc Mon Sep 17 00:00:00 2001 From: Willow Barraco Date: Mon, 19 May 2025 08:22:54 +0200 Subject: [PATCH] kconfigcheck: add netmount category to support NFS better NFS allow the user to mount distant resources locally, and this is specially great for mobiles devices, with limited disk space. The user can couple this with FS-Cache, to limit the network impact. Kerberos bring security to the NFS mounting. This new category "netmout" make sure the kernels are built to support this. --- kconfigcheck.toml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/kconfigcheck.toml b/kconfigcheck.toml index 9a6e9979c..01323d70d 100644 --- a/kconfigcheck.toml +++ b/kconfigcheck.toml @@ -84,6 +84,32 @@ PSI = true PSI_DEFAULT_DISABLED = false UDMABUF = true +["category:netmount".">=2.6.0"."all"] +CACHEFILES = true +CRYPTO_AES = true +CRYPTO_CAMELLIA = true +CRYPTO_CBC = true +CRYPTO_CTS = true +CRYPTO_HMAC = true +CRYPTO_SHA256 = true +CRYPTO_SHA512 = true +FSCACHE = true +NFS_FS = true +NFS_FSCACHE = true +NFS_V3 = true +NFS_V4 = true +RPCSEC_GSS_KRB5 = true +["category:netmount".">=3.1.0"."all"] +CRYPTO_CMAC = true +["category:netmount".">=3.10.0"."all"] +CRYPTO_AES_TI = true +["category:netmount".">=3.10.0"."aarch64"] +CRYPTO_AES_ARM64_CE_BLK = true +["category:netmount".">=4.14.0"."all"] +RPCSEC_GSS_KRB5_ENCTYPES_AES_SHA1 = true +RPCSEC_GSS_KRB5_ENCTYPES_AES_SHA2 = true +RPCSEC_GSS_KRB5_ENCTYPES_CAMELLIA = true + # waydroid: android compatibility layer ["category:waydroid".">=0.0.0"."all"] ANDROID_BINDERFS = false