search for: ce71a8

Displaying 2 results from an estimated 2 matches for "ce71a8".

Did you mean: ce71a8e
2014 Dec 09
2
Re: [Qemu-devel] Cubietruck: cannot create KVM guests: "kvm_init_vcpu failed: Invalid argument"
...; Kashyap ^^ can you try this? Should be a trivial one-liner change > > in src/launch-direct.c. > > Yes it works with it :-) > > With the below diff in `libguestfs`: > > $ git diff src/launch.c > diff --git a/src/launch.c b/src/launch.c > index 9fadce8..ce71a8e 100644 > --- a/src/launch.c > +++ b/src/launch.c > @@ -400,7 +400,7 @@ const char * > guestfs___get_cpu_model (int kvm) > { > #if defined(__arm__) /* 32 bit ARM. */ > - return NULL; > + return "host"; > >...
2014 Dec 09
0
Re: [Qemu-devel] Cubietruck: cannot create KVM guests: "kvm_init_vcpu failed: Invalid argument"
...rivial one-liner change > > > in src/launch-direct.c. > > > > Yes it works with it :-) > > > > With the below diff in `libguestfs`: > > > > $ git diff src/launch.c > > diff --git a/src/launch.c b/src/launch.c > > index 9fadce8..ce71a8e 100644 > > --- a/src/launch.c > > +++ b/src/launch.c > > @@ -400,7 +400,7 @@ const char * > > guestfs___get_cpu_model (int kvm) > > { > > #if defined(__arm__) /* 32 bit ARM. */ > > - return NULL; > > +...