From 63f93bce8d963a5de3365d0839627285a82a15f1 Mon Sep 17 00:00:00 2001 From: Neil Hanlon Date: Mon, 19 Dec 2022 20:29:15 -0500 Subject: [PATCH] Change mousetype to usb for ppc64le --- oz/Guest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/oz/Guest.py b/oz/Guest.py index f1ca403e..76aaee38 100644 --- a/oz/Guest.py +++ b/oz/Guest.py @@ -259,7 +259,7 @@ def __init__(self, tdl, config, auto, output_disk, nicmodel, clockoffset, self.clockoffset = "utc" self.mousetype = mousetype if self.mousetype is None: - if self.tdl.arch in ["aarch64", "armv7l"]: + if self.tdl.arch in ["aarch64", "armv7l", "ppc64le"]: self.mousetype = "usb" else: self.mousetype = "ps2"