diff --git a/internal/runtime/runtime_factory.go b/internal/runtime/runtime_factory.go index 4bc4e71e..a4426459 100644 --- a/internal/runtime/runtime_factory.go +++ b/internal/runtime/runtime_factory.go @@ -122,6 +122,9 @@ func supportedModifierTypes(mode string) []string { case "cdi": // For CDI mode we make no additional modifications. return []string{"mode"} + case "csv": + // For CSV mode we support mode and feature-gated modification. + return []string{"mode", "feature-gated"} default: return []string{"mode", "graphics", "feature-gated"} }