search for: cpu_abort

Displaying 3 results from an estimated 3 matches for "cpu_abort".

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. * ************************************************************
2009 Mar 02
0
[PATCH 3 of 13] remove bgr
...b/hw/musicpal.c @@ -835,7 +835,7 @@ static void lcd_refresh(void *opaque) break; LCD_REFRESH(8, rgb_to_pixel8) LCD_REFRESH(16, rgb_to_pixel16) - LCD_REFRESH(32, (s->ds->bgr ? rgb_to_pixel32bgr : rgb_to_pixel32)) + LCD_REFRESH(32, rgb_to_pixel32) default: cpu_abort(cpu_single_env, "unsupported colour depth %i\n", ds_get_bits_per_pixel(s->ds)); diff --git a/hw/tcx.c b/hw/tcx.c index de4fda0..dd3ac37 100644 --- a/hw/tcx.c +++ b/hw/tcx.c @@ -61,22 +61,13 @@ static void update_palette_entries(TCXState *s, int start, int end)...
2014 Jun 10
2
Re: libguestfs supermin error
...de. 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 the right information > * with kvm */ > cap_papr = 1; > } > > I suggest asking on one of the qemu mailing lists. > > Rich. > > -- > Ric...