]> xenbits.xensource.com Git - qemu-xen.git/commitdiff
hw/core/generic-loader: Allow PC to be set on command line
authorPeter Maydell <peter.maydell@linaro.org>
Mon, 5 Feb 2018 15:04:26 +0000 (15:04 +0000)
committerPeter Maydell <peter.maydell@linaro.org>
Fri, 9 Feb 2018 10:55:40 +0000 (10:55 +0000)
The documentation for the generic loader claims that you can
set the PC for a CPU with an option of the form
  -device loader,cpu-num=0,addr=0x10000004

However if you try this QEMU complains:
  cpu_num must be specified when setting a program counter

This is because we were testing against 0 rather than CPU_NONE.

Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Reviewed-by: Alistair Francis <alistair.francis@xilinx.com>
Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Message-id: 20180205150426.20542-1-peter.maydell@linaro.org

hw/core/generic-loader.c

index 46012673c384a8d4effb092e072ccbc35ed8ca10..cb0e68486dfc1b12aa560c420c397f11b20fe6de 100644 (file)
@@ -105,7 +105,7 @@ static void generic_loader_realize(DeviceState *dev, Error **errp)
             error_setg(errp, "data can not be specified when setting a "
                        "program counter");
             return;
-        } else if (!s->cpu_num) {
+        } else if (s->cpu_num == CPU_NONE) {
             error_setg(errp, "cpu_num must be specified when setting a "
                        "program counter");
             return;