This patch adds 'type vnc' to vfb device sexpr for HVM guests. PV
guests already contain this entry in sexpr, e.g.
(device
(vfb
(vncunused 1)
...
(type vnc)
...
)
)
Some tools, such as libvirt, look for device/vfb/type in sexpr before
publishing VNC port. More importantly, this patch provides consistency
in vfb device sexpr between HVM and PV guests.
Signed-off-by: Jim Fehlig <jfehlig@xxxxxxxxxx>
Regards,
Jim
diff -r 9071521d4864 tools/python/xen/xend/XendConfig.py
--- a/tools/python/xen/xend/XendConfig.py Fri Sep 07 11:39:10 2007 +0100
+++ b/tools/python/xen/xend/XendConfig.py Fri Sep 07 17:17:30 2007 -0600
@@ -752,6 +752,7 @@ class XendConfig(dict):
if not has_rfb:
dev_config = ['vfb']
+ dev_config.append(['type', 'vnc'])
# copy VNC related params from platform config to vfb dev conf
for key in ['vncpasswd', 'vncunused', 'vncdisplay',
'vnclisten']:
_______________________________________________
Xen-devel mailing list
Xen-devel@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-devel
|