|
|
|
|
|
|
|
|
|
|
xen-changelog
[Xen-changelog] [xen-unstable] Add 'type vnc' to vfb device sexpr for HV
# HG changeset patch
# User kfraser@xxxxxxxxxxxxxxxxxxxxx
# Date 1189514444 -3600
# Node ID d146097e049deb5b3d6c632db26dc86b9c161f1e
# Parent 7dfc9a7a0d4e595660a671ace64523c876158ad0
Add 'type vnc' to vfb device sexpr for HVM guest
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>
---
tools/python/xen/xend/XendConfig.py | 1 +
1 files changed, 1 insertion(+)
diff -r 7dfc9a7a0d4e -r d146097e049d tools/python/xen/xend/XendConfig.py
--- a/tools/python/xen/xend/XendConfig.py Tue Sep 11 12:30:39 2007 +0100
+++ b/tools/python/xen/xend/XendConfig.py Tue Sep 11 13:40:44 2007 +0100
@@ -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-changelog mailing list
Xen-changelog@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-changelog
|
<Prev in Thread] |
Current Thread |
[Next in Thread> |
- [Xen-changelog] [xen-unstable] Add 'type vnc' to vfb device sexpr for HVM guest,
Xen patchbot-unstable <=
|
|
|
|
|