On Wed, Jan 28, 2026 at 10:21:57 -0300, Julio Faracco wrote:
This commit updates the domain XML schema to allow 'multitouch' as a valid virtio input device type.
Signed-off-by: Julio Faracco <jcfaracco@gmail.com> --- src/conf/schemas/domaincommon.rng | 1 + 1 file changed, 1 insertion(+)
diff --git a/src/conf/schemas/domaincommon.rng b/src/conf/schemas/domaincommon.rng index 114dd3f96f..d8fdc8c240 100644 --- a/src/conf/schemas/domaincommon.rng +++ b/src/conf/schemas/domaincommon.rng @@ -6359,6 +6359,7 @@ <value>tablet</value> <value>mouse</value> <value>keyboard</value> + <value>multitouch</value> </choice> </attribute> <optional>
Adding new elements into the schema usually goes also with documentation (e.g. in docs/formatdomain.rst ) that describes the new feature and it's options.