# HG changeset patch
# User Keir Fraser <keir.fraser@xxxxxxxxxx>
# Date 1228390297 0
# Node ID 63aa939c114cf88d400514a04d69165cff64759d
# Parent 7338f6301067c7298eb4b3ff44992c53488b0df7
xend: Remember bootloader settings in xenstore
When xend is restarted, bootloader settings of all running domains are
lost. The attached patches fixes this by saving bootloader and
bootloader_args to xenstore database.
Signed-off-by: Jiri Denemark <jdenemar@xxxxxxxxxx>
---
tools/python/xen/xend/XendConfig.py | 4 ++++
1 files changed, 4 insertions(+)
diff -r 7338f6301067 -r 63aa939c114c tools/python/xen/xend/XendConfig.py
--- a/tools/python/xen/xend/XendConfig.py Wed Dec 03 15:58:23 2008 +0000
+++ b/tools/python/xen/xend/XendConfig.py Thu Dec 04 11:31:37 2008 +0000
@@ -256,6 +256,8 @@ LEGACY_CFG_TYPES = {
'on_xend_start': str,
'online_vcpus': int,
'rtc/timeoffset': str,
+ 'bootloader': str,
+ 'bootloader_args': str,
}
# Values that should be stored in xenstore's /vm/<uuid> that is used
@@ -276,6 +278,8 @@ LEGACY_XENSTORE_VM_PARAMS = [
'on_reboot',
'on_xend_start',
'on_xend_stop',
+ 'bootloader',
+ 'bootloader_args',
]
##
_______________________________________________
Xen-changelog mailing list
Xen-changelog@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-changelog
|