diff --git a/CHANGELOG.md b/CHANGELOG.md index e63d26d..19d832f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,7 @@ * add bootorder for device `disk` and `hostdev` * add section `iothreads` * Updated section `memoryBacking` + * Update section `clock` * Allow in feature section, customization of the `ioapic` option * add section `cputune` diff --git a/generate-xml/domain.nix b/generate-xml/domain.nix index bb22e4a..ea46325 100644 --- a/generate-xml/domain.nix +++ b/generate-xml/domain.nix @@ -157,9 +157,22 @@ let (subelem "timer" [ (subattr "name" typeString) + (subattr "track" typeString) (subattr "tickpolicy" typeString) + (subattr "frequency" typeInt) + (subattr "mode" typeString) (subattr "present" typeBoolYesNo) - ] [ ]) + ] + [ + (subelem "catchup" + [ + (subattr "threshold" typeInt) + (subattr "slew" typeInt) + (subattr "limit" typeInt) + ] [ ] + ) + ] + ) ] ) (subelem "on_poweroff" [ ] typeString)