From 1c26be5ffeb25e88ef9abba49048ec6c18342952 Mon Sep 17 00:00:00 2001 From: Clayton Craft Date: Wed, 8 Oct 2025 17:35:40 -0700 Subject: [PATCH] kconfigcheck: add 'wine' category for community kernels This category can be used to collect kconfig that improve Wine/Proton support on devices. NTSYNC is Win NT sync primatives that improve performance of things running under Wine. Signed-off-by: Clayton Craft Part-of: --- kconfigcheck.toml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/kconfigcheck.toml b/kconfigcheck.toml index a49b9e939..0be0691ec 100644 --- a/kconfigcheck.toml +++ b/kconfigcheck.toml @@ -24,6 +24,7 @@ community = [ "category:nftables", "category:usb_gadgets", "category:waydroid", + "category:wine", "category:wireguard", "category:zram", ] @@ -603,3 +604,7 @@ SHADOW_CALL_STACK = "y" ["category:rust".">=6.1.0"."all"] DEBUG_INFO_BTF = "n" # Conflicts with LTO when Rust is enabled DEBUG_INFO_BTF_MODULES = "n" # Conflicts with LTO when Rust is enabled + +# Wine / Proton support +["category:wine".">=6.14.0"."all"] +NTSYNC = "m"