Remove non-existant 'wiremode' attribute

The 'wiremode' attribute exists in a couple of Xen XML files, but no code has
ever parsed that value. It was later added to the RNG schema too, again despite
there not being any code which parses it.

Reviewed-by: Jim Fehlig <jfehlig@suse.com>
Signed-off-by: Daniel P. Berrange <berrange@redhat.com>
This commit is contained in:
Daniel P. Berrange 2017-11-29 18:00:04 +00:00
parent 1c7874e8d9
commit c703913cc0
3 changed files with 2 additions and 5 deletions

View File

@ -3708,9 +3708,6 @@
<optional>
<attribute name="service"/>
</optional>
<optional>
<attribute name="wiremode"/>
</optional>
<optional>
<attribute name="channel"/>
</optional>

View File

@ -32,7 +32,7 @@
<target dev='ioemu:hda'/>
</disk>
<parallel type='tcp'>
<source mode='connect' host='localhost' service='9999' wiremode='raw'/>
<source mode='connect' host='localhost' service='9999'/>
<target port='0'/>
</parallel>
<graphics type='vnc' port='5917' keymap='ja'/>

View File

@ -32,7 +32,7 @@
<target dev='ioemu:hda'/>
</disk>
<serial type='tcp'>
<source mode='bind' host='localhost' service='9999' wiremode='raw'/>
<source mode='bind' host='localhost' service='9999'/>
<target port='0'/>
</serial>
<graphics type='vnc' port='5917' keymap='ja'/>