rusticl: fix 'enable-drivers' meson option

Fixes: 1301d61de4 ("rusticl: allow devices to be enabled by default")
Fixes: 9cdf897c5e ("rusticl: allow asahi to be enabled by default")
Closes: https://gitlab.freedesktop.org/mesa/mesa/-/issues/14302
(cherry picked from commit 5a917f035c)

Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/39462>
This commit is contained in:
Eric Engestrom 2026-01-05 18:29:00 +01:00 committed by Dylan Baker
parent e300719298
commit fe887afa44
2 changed files with 3 additions and 2 deletions

View file

@ -434,7 +434,7 @@
"description": "rusticl: fix 'enable-drivers' meson option",
"nominated": true,
"nomination_type": 2,
"resolution": 0,
"resolution": 1,
"main_sha": null,
"because_sha": "1301d61de41e4c12c0767ab75d8a2cabe977509e",
"notes": null

View file

@ -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',
)