projects
/
xen.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e5a17f0
)
[XEND] Don't hide the 'type' SXP config item from HVM guests
author
Alastair Tse
<atse@xensource.com>
Fri, 3 Nov 2006 11:42:57 +0000
(11:42 +0000)
committer
Alastair Tse
<atse@xensource.com>
Fri, 3 Nov 2006 11:42:57 +0000
(11:42 +0000)
Should allow network devices to properly initialised in HVM guests.
Signed-off-by: Alastair Tse <atse@xensource.com>
tools/python/xen/xend/XendConfig.py
patch
|
blob
|
history
diff --git
a/tools/python/xen/xend/XendConfig.py
b/tools/python/xen/xend/XendConfig.py
index 1237f6b891f33860babebf3ecd450ab3392c6386..32d9f906ac4793c449cced3535f41e87d7c136af 100644
(file)
--- a/
tools/python/xen/xend/XendConfig.py
+++ b/
tools/python/xen/xend/XendConfig.py
@@
-844,8
+844,7
@@
class XendConfig(dict):
"configuration dictionary.")
sxpr.append(dev_type)
- config = [(opt, val) for opt, val in dev_info.items() \
- if opt != 'type']
+ config = [(opt, val) for opt, val in dev_info.items()]
sxpr += config
return sxpr