diff options
| author | Jeff Carr <[email protected]> | 2024-11-01 12:49:34 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2024-11-01 12:49:34 -0500 |
| commit | d1944c388fd7a9166dfb7be326e92dedeb6e09a0 (patch) | |
| tree | 4d19b58cc2913ff7ccf9f2f584f8874447f743c4 | |
| parent | edb7b340925a5e9dcd8cafeb4132e3394223dc6f (diff) | |
things are back to normalv0.1.1
Signed-off-by: Jeff Carr <[email protected]>
| -rw-r--r-- | dumpNonStandardXML.go | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/dumpNonStandardXML.go b/dumpNonStandardXML.go index a7d620d..9265737 100644 --- a/dumpNonStandardXML.go +++ b/dumpNonStandardXML.go @@ -38,6 +38,14 @@ func DumpNonStandardXML(domcfg *libvirtxml.Domain) (string, error) { standardOS = true } } + if domcfg.OS.NVRam != nil { + result += fmt.Sprintf("nvram: %+v\n", domcfg.OS.NVRam) + standardOS = false + } + if domcfg.OS.Loader != nil { + result += fmt.Sprintf("loader: %+v\n", domcfg.OS.Loader) + standardOS = false + } } if standardOS { domcfg.OS = nil |
