From 80bc1cff5fd7de40f6b98f1933fb94f5d3fc9e47 Mon Sep 17 00:00:00 2001 From: Piotr Tworek Date: Thu, 25 Jun 2020 22:52:29 +0200 Subject: [PATCH] run: Use Qemu 5.0.0 compatile gic-version param. It seems Qemu 5.0.0 no longer supports gic_version parameter. Apparently this only worked due to some compat feature that was dropped in Qemu 5.0.0. The replacement which works on both old and new Qemu versions is gic-version. Fixes #3823 --- tool/run/power_on/qemu | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tool/run/power_on/qemu b/tool/run/power_on/qemu index 178f641600..9ba65ba9f3 100644 --- a/tool/run/power_on/qemu +++ b/tool/run/power_on/qemu @@ -112,7 +112,7 @@ proc run_power_on { } { if {[have_spec virt_qemu]} { append qemu_args " -M virt,virtualization=true" if {[have_spec arm_v8a]} { - append qemu_args ",gic_version=3 -cpu cortex-a53 -smp 4" + append qemu_args ",gic-version=3 -cpu cortex-a53 -smp 4" } if {[have_spec arm_v7a]} { append qemu_args " -cpu cortex-a15 -smp 2"