direct-io.hg
changeset 13775:868babf6b1dd
Fix HVM save/restore wrt console handling.
From Tim Deegan <Tim.Deegan@xensource.com>.
Signed-off-by: Ewan Mellor <ewan@xensource.com>
From Tim Deegan <Tim.Deegan@xensource.com>.
Signed-off-by: Ewan Mellor <ewan@xensource.com>
author | Ewan Mellor <ewan@xensource.com> |
---|---|
date | Thu Feb 01 15:30:22 2007 +0000 (2007-02-01) |
parents | d34d43fb88ae |
children | 2b4b07391df2 |
files | tools/python/xen/xend/XendConfig.py |
line diff
1.1 --- a/tools/python/xen/xend/XendConfig.py Thu Feb 01 15:03:55 2007 +0000 1.2 +++ b/tools/python/xen/xend/XendConfig.py Thu Feb 01 15:30:22 2007 +0000 1.3 @@ -679,6 +679,9 @@ class XendConfig(dict): 1.4 if self['devices'][console_uuid][1].get('protocol') == 'rfb': 1.5 has_rfb = True 1.6 break 1.7 + if self['devices'][console_uuid][0] == 'vfb': 1.8 + has_rfb = True 1.9 + break 1.10 1.11 if not has_rfb: 1.12 dev_config = ['vfb']