# HG changeset patch # User Xiaofeng Ling # Node ID e8d938a4dcc90108739635489b01c99a33305045 # Parent 53cbced17c98f009c8cf534358979d9115b8657d fix vnc configuration issue for creating vmx guest Signed-off-by: Xiaofeng Ling diff -r 53cbced17c98 -r e8d938a4dcc9 tools/python/xen/xend/image.py --- a/tools/python/xen/xend/image.py Fri Sep 16 06:41:40 2005 +++ b/tools/python/xen/xend/image.py Mon Sep 19 02:35:32 2005 @@ -294,6 +294,7 @@ """ self.parseMemmap() self.createDomain() + self.dmargs += self.configVNC(sxp.child_value(self.vm.config, 'image')) def buildDomain(self): # Create an event channel @@ -377,10 +378,13 @@ instance = sxp.child_value(vtpminfo, 'instance') ret.append("-instance") ret.append("%s" % instance) - + return ret + + def configVNC(self, config): # Handle graphics library related options vnc = sxp.child_value(config, 'vnc') sdl = sxp.child_value(config, 'sdl') + ret = [] nographic = sxp.child_value(config, 'nographic') if nographic: ret.append('-nographic')