ppc/pegasos2: Fix spurious warning with -bios
authorBALATON Zoltan <balaton@eik.bme.hu>
Thu, 15 Jul 2021 16:50:44 +0000 (18:50 +0200)
committerDavid Gibson <david@gibson.dropbear.id.au>
Thu, 29 Jul 2021 00:59:49 +0000 (10:59 +1000)
The -append option is currently not compatible with -bios (as we don't
yet emulate nvram so we can only put it in the environment with VOF).
Therefore a warning is printed if -append is used with -bios but
because the default value of kernel_cmdline seems to be an empty
string instead of NULL this warning was printed even without -append
when -bios is used. Only print warning if -append is given.

Signed-off-by: BALATON Zoltan <balaton@eik.bme.hu>
Message-Id: <483ac599a1407b766179aaea2794aed60cc09f53.1626367844.git.balaton@eik.bme.hu>
Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
hw/ppc/pegasos2.c

index 9fad1854b1b62dea6e04e8f17fe2c6ae993a8378..b8ce859f1a9c8df1662c5d58199e1fcca7dc4c1a 100644 (file)
@@ -191,7 +191,7 @@ static void pegasos2_init(MachineState *machine)
             warn_report("Option -kernel may be ineffective with -bios.");
         }
     }
-    if (machine->kernel_cmdline && !pm->vof) {
+    if (!pm->vof && machine->kernel_cmdline && machine->kernel_cmdline[0]) {
         warn_report("Option -append may be ineffective with -bios.");
     }
 }