Displaying 3 results from an estimated 3 matches for "powerpccpu".
2014 Jun 04
2
Re: libguestfs supermin error
Hi Rich..
I'm now getting following logs after following your instructions..
libguestfs-test-tool
************************************************************
* IMPORTANT NOTICE
*
* When reporting bugs, include the COMPLETE, UNEDITED
* output below in your bug report.
*
************************************************************
2012 Oct 15
1
[QEMU PATCH v4] create struct for machine initialization arguments
...t;ram_size;
+ const char *cpu_model = args->cpu_model;
+ const char *kernel_filename = args->kernel_filename;
+ const char *kernel_cmdline = args->kernel_cmdline;
+ const char *initrd_filename = args->initrd_filename;
+ const char *boot_device = args->boot_device;
PowerPCCPU *cpu = NULL;
CPUPPCState *env = NULL;
char *filename;
diff --git a/hw/ppc_oldworld.c b/hw/ppc_oldworld.c
index 2c4a478..de33408 100644
--- a/hw/ppc_oldworld.c
+++ b/hw/ppc_oldworld.c
@@ -71,13 +71,14 @@ static void ppc_heathrow_reset(void *opaque)
cpu_reset(CPU(cpu));
}
-static vo...
2014 Jun 10
2
Re: libguestfs supermin error
...;
> I don't think I sent a reply to this email before, however the error
> above is obviously the problem. The solution is less obvious ...
>
> Here is the code. It seems to be checking a kernel capability which
> is missing on your (host) kernel:
>
> void kvmppc_set_papr(PowerPCCPU *cpu)
> {
> CPUState *cs = CPU(cpu);
> int ret;
>
> ret = kvm_vcpu_enable_cap(cs, KVM_CAP_PPC_PAPR, 0);
> if (ret) {
> cpu_abort(cs, "This KVM version does not support PAPR\n");
> }
>
> /* Update the capability flag so we sync...