Signed-off-by: Jeff Carr <jcarr@wit.com>
This commit is contained in:
Jeff Carr 2024-10-23 18:15:59 -05:00
parent 07da0fa0ee
commit e4c089f70e
1 changed files with 22 additions and 7 deletions

15
xml.go
View File

@ -511,6 +511,21 @@ func dumpNonStandardXML(domcfg *libvirtxml.Domain) {
domcfg.Devices.RedirDevs = nil domcfg.Devices.RedirDevs = nil
} }
var normalRNGs bool = true
if domcfg.Devices.RNGs != nil {
for _, rng := range domcfg.Devices.RNGs {
if rng.Model == "virtio" {
// nothing to do for this
} else {
fmt.Printf("? RNGs: %+v\n", rng)
normalRNGs = false
}
}
}
if normalRNGs {
domcfg.Devices.RNGs = nil
}
// this is probably for spice to have keyboard and mouse input // this is probably for spice to have keyboard and mouse input
var normalVideo bool = true var normalVideo bool = true
if domcfg.Devices.Videos != nil { if domcfg.Devices.Videos != nil {