[libvirt] [PATCH go-xml] Add support for host paravirt bootloader, used by Xen and bhyve.

2017-11-07 Thread Brandon Bergren
--- domain.go | 2 ++ domain_test.go | 16 2 files changed, 18 insertions(+) diff --git a/domain.go b/domain.go index aea54a5..debc5b2 100644 --- a/domain.go +++ b/domain.go @@ -797,6 +797,8 @@ type Domain struct { VCPU*DomainVCPU `xml:"vcpu"`

Re: [libvirt] [PATCH go-xml] Improve DomainChardevSource.

2017-11-06 Thread Brandon Bergren
Please disregard this, I accidentally sent the wrong patch. This one overlaps with https://www.redhat.com/archives/libvir-list/2017-October/msg00022.html and I will be reworking it. On Sat, Nov 4, 2017, at 03:18 PM, Brandon Bergren wrote: > * Add missing attributes to DomainChardevSou

[libvirt] [PATCH go-xml] Add support for host paravirt bootloader.

2017-11-06 Thread Brandon Bergren
--- domain.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/domain.go b/domain.go index 2b749b2..f4ef35c 100644 --- a/domain.go +++ b/domain.go @@ -791,6 +791,8 @@ type Domain struct { VCPU*DomainVCPU `xml:"vcpu"` VCPUs *DomainVCPUs

[libvirt] [PATCH go-xml] Improve DomainChardevSource.

2017-11-06 Thread Brandon Bergren
* Add missing attributes to DomainChardevSource. * Change Path to be omitempty because several chardev types do not use it. * Document which chardev types use which attributes (for convenience) I was mainly interested in making it possible to define nmdm devices from go code, but I figured I