Re: [libvirt] [PATCH v6] bhyve: add a basic driver

2014-02-09 Thread Roman Bogorodskiy
David Shane Holden wrote: > On 02/08/14 01:26, Roman Bogorodskiy wrote: > > --- a/configure.ac > > +++ b/configure.ac > > @@ -2704,6 +2710,7 @@ AC_MSG_NOTICE([ PHYP: $with_phyp]) > > AC_MSG_NOTICE([ ESX: $with_esx]) > > AC_MSG_NOTICE([ Hyper-V: $with_hyperv]) > > AC_MSG_NOTICE([P

Re: [libvirt] [PATCH v6] bhyve: add a basic driver

2014-02-08 Thread David Shane Holden
On 02/08/14 01:26, Roman Bogorodskiy wrote: --- a/configure.ac +++ b/configure.ac @@ -2704,6 +2710,7 @@ AC_MSG_NOTICE([ PHYP: $with_phyp]) AC_MSG_NOTICE([ ESX: $with_esx]) AC_MSG_NOTICE([ Hyper-V: $with_hyperv]) AC_MSG_NOTICE([Parallels: $with_parallels]) +LIBIVRT_DRIVER_RESULT_BH

[libvirt] [PATCH v6] bhyve: add a basic driver

2014-02-07 Thread Roman Bogorodskiy
At this point it has a limited functionality and is highly experimental. Supported domain operations are: * define * start * destroy * dumpxml * dominfo It's only possible to have only one disk device and only one network, which should be of type bridge. --- configure.ac

[libvirt] [PATCH v6] bhyve: add a basic driver

2014-02-07 Thread Roman Bogorodskiy
Changes from v5: - Obtain version using uname(3) - Cleanup driver global objects in StateCleanup instead of ConnectClose Changes from v4: - Set acpi and apic flags based on domain definition - Add more detailed description about -H and -P flags of bhyve to justify theirs usage Roman Bog