mirror of https://gitee.com/openkylin/libvirt.git
schema: bhyve and nmdm updates
* docs/schemas/domaincommon.rng: Add bhyve domain type, nmdm serial type and master and slave optional attributes for serial that are used by nmdm * tests/domainschematest: Add bhyvexml2argvdata directory to validate bhyve XMLs
This commit is contained in:
parent
71ee25f562
commit
1281f4a100
|
@ -201,6 +201,7 @@
|
|||
<value>vbox</value>
|
||||
<value>phyp</value>
|
||||
<value>parallels</value>
|
||||
<value>bhyve</value>
|
||||
</choice>
|
||||
</attribute>
|
||||
</define>
|
||||
|
@ -3010,6 +3011,7 @@
|
|||
<value>pty</value>
|
||||
<value>spicevmc</value>
|
||||
<value>spiceport</value>
|
||||
<value>nmdm</value>
|
||||
</choice>
|
||||
</define>
|
||||
|
||||
|
@ -3082,6 +3084,12 @@
|
|||
<optional>
|
||||
<attribute name="channel"/>
|
||||
</optional>
|
||||
<optional>
|
||||
<attribute name="master"/>
|
||||
</optional>
|
||||
<optional>
|
||||
<attribute name="slave"/>
|
||||
</optional>
|
||||
<optional>
|
||||
<ref name='devSeclabel'/>
|
||||
</optional>
|
||||
|
|
|
@ -6,8 +6,9 @@
|
|||
|
||||
DIRS=""
|
||||
DIRS="$DIRS domainschemadata qemuxml2argvdata sexpr2xmldata"
|
||||
DIRS="$DIRS xmconfigdata xml2sexprdata qemuxml2xmloutdata "
|
||||
DIRS="$DIRS xmconfigdata xml2sexprdata qemuxml2xmloutdata"
|
||||
DIRS="$DIRS lxcxml2xmldata lxcxml2xmloutdata"
|
||||
DIRS="$DIRS bhyvexml2argvdata"
|
||||
SCHEMA="domain.rng"
|
||||
|
||||
check_schema "$DIRS" "$SCHEMA"
|
||||
|
|
Loading…
Reference in New Issue