From 54789ef242008cf12d651694a2aa8dd29b13ae1f Mon Sep 17 00:00:00 2001 From: Alex Iribarren Date: Tue, 22 Feb 2022 16:36:20 +0100 Subject: [PATCH] Enable USB controller and keyboard for aarch64 for all libvirt types --- oz/Guest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/oz/Guest.py b/oz/Guest.py index d0e0f06887c1aa8292c9f66ab1aae2d9d4a25f80..5197067f9e5422e1a21e927cfb7b7972a9d30fcc 100644 --- a/oz/Guest.py +++ b/oz/Guest.py @@ -531,7 +531,7 @@ class Guest(object): elif self.mousetype == "usb": mousedict['type'] = 'tablet' oz.ozutil.lxml_subelement(devices, "input", None, mousedict) - if self.tdl.arch in ["aarch64", "armv7l"] and self.libvirt_type == "kvm": + if self.tdl.arch in ["aarch64", "armv7l"]: # Other arches add a keyboard by default, for historical reasons ARM doesn't # so we add it here so graphical works and hence we can get debug screenshots RHBZ 1538637 oz.ozutil.lxml_subelement(devices, 'controller', None, {'type': 'usb', 'index': '0'}) -- 2.37.3