From: John Snow Date: Mon, 10 Jan 2022 23:28:58 +0000 (-0500) Subject: scripts/cpu-x86-uarch-abi: switch to AQMP X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=0665410dcf3d3fa8758545668998dd16d3abbaa9;p=qemu.git scripts/cpu-x86-uarch-abi: switch to AQMP Signed-off-by: John Snow Reviewed-by: Daniel P. Berrangé Reviewed-by: Vladimir Sementsov-Ogievskiy Reviewed-by: Beraldo Leal --- diff --git a/scripts/cpu-x86-uarch-abi.py b/scripts/cpu-x86-uarch-abi.py index 8963d90f0b..c262d2f027 100644 --- a/scripts/cpu-x86-uarch-abi.py +++ b/scripts/cpu-x86-uarch-abi.py @@ -6,7 +6,7 @@ # compatibility levels for each CPU model. # -from qemu import qmp +from qemu.aqmp.legacy import QEMUMonitorProtocol import sys if len(sys.argv) != 2: @@ -66,7 +66,7 @@ levels = [ sock = sys.argv[1] -shell = qmp.QEMUMonitorProtocol(sock) +shell = QEMUMonitorProtocol(sock) shell.connect() models = shell.cmd("query-cpu-definitions")