It's named as "kvmtool". --- src/conf/domain_conf.c | 4 +++- src/conf/domain_conf.h | 1 + 2 files changed, 4 insertions(+), 1 deletions(-) diff --git a/src/conf/domain_conf.c b/src/conf/domain_conf.c index 58f4d0f..55121d8 100644 --- a/src/conf/domain_conf.c +++ b/src/conf/domain_conf.c @@ -91,7 +91,8 @@ VIR_ENUM_IMPL(virDomainVirt, VIR_DOMAIN_VIRT_LAST, "hyperv", "vbox", "one", - "phyp") + "phyp", + "kvmtool") VIR_ENUM_IMPL(virDomainBoot, VIR_DOMAIN_BOOT_LAST, "fd", @@ -4018,6 +4019,7 @@ virDomainChrDefParseXML(virCapsPtr caps, if (type == NULL) { def->source.type = VIR_DOMAIN_CHR_TYPE_PTY; } else if ((def->source.type = virDomainChrTypeFromString(type)) < 0) { + VIR_WARN("type = %s", type); virDomainReportError(VIR_ERR_XML_ERROR, _("unknown type presented to host for character device: %s"), type); diff --git a/src/conf/domain_conf.h b/src/conf/domain_conf.h index a3cb834..001bc46 100644 --- a/src/conf/domain_conf.h +++ b/src/conf/domain_conf.h @@ -59,6 +59,7 @@ enum virDomainVirtType { VIR_DOMAIN_VIRT_VBOX, VIR_DOMAIN_VIRT_ONE, VIR_DOMAIN_VIRT_PHYP, + VIR_DOMAIN_VIRT_KVMTOOL, VIR_DOMAIN_VIRT_LAST, }; -- 1.7.6 -- libvir-list mailing list libvir-list@xxxxxxxxxx https://www.redhat.com/mailman/listinfo/libvir-list