From 5a917f035c651aaff77af69e1ed9a0ac874d4787 Mon Sep 17 00:00:00 2001 From: Eric Engestrom Date: Mon, 5 Jan 2026 18:29:00 +0100 Subject: [PATCH] rusticl: fix 'enable-drivers' meson option Fixes: 1301d61de41e4c12c076 ("rusticl: allow devices to be enabled by default") Fixes: 9cdf897c5ed3aa2903c4 ("rusticl: allow asahi to be enabled by default") Closes: https://gitlab.freedesktop.org/mesa/mesa/-/issues/14302 Part-of: --- meson.options | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/meson.options b/meson.options index cf28ff85380..9440b9e44e6 100644 --- a/meson.options +++ b/meson.options @@ -147,7 +147,8 @@ option( option( 'gallium-rusticl-enable-drivers', type : 'array', - value : ['auto', 'asahi', 'freedreno', 'radeonsi'], + value : ['auto'], + choices : ['auto', 'asahi', 'freedreno', 'radeonsi'], description : 'List of gallium drivers for which rusticl will be enabled ' + 'by default', )