# HG changeset patch
# User Ian Campbell <ian.campbell@xxxxxxxxxx>
# Date 1283447729 -3600
# Node ID 758154658bf86527e16b046365819e2b72c5ca11
# Parent 22366e13f76d8434d50c8b28789a4e8cecf9ba43
xl: support console autoconnect on restore
Signed-off-by: Ian Campbell <ian.campbell@xxxxxxxxxx>
---
tools/libxl/xl_cmdimpl.c | 10 +++++++---
1 files changed, 7 insertions(+), 3 deletions(-)
diff -r 22366e13f76d -r 758154658bf8 tools/libxl/xl_cmdimpl.c
--- a/tools/libxl/xl_cmdimpl.c Thu Sep 02 18:12:14 2010 +0100
+++ b/tools/libxl/xl_cmdimpl.c Thu Sep 02 18:15:29 2010 +0100
@@ -2721,11 +2721,14 @@ int main_restore(int argc, char **argv)
char *checkpoint_file = NULL;
char *config_file = NULL;
struct domain_create dom_info;
- int paused = 0, debug = 0, daemonize = 1;
+ int paused = 0, debug = 0, daemonize = 1, console_autoconnect = 0;
int opt, rc;
- while ((opt = getopt(argc, argv, "hpde")) != -1) {
- switch (opt) {
+ while ((opt = getopt(argc, argv, "chpde")) != -1) {
+ switch (opt) {
+ case 'c':
+ console_autoconnect = 1;
+ break;
case 'p':
paused = 1;
break;
@@ -2761,6 +2764,7 @@ int main_restore(int argc, char **argv)
dom_info.config_file = config_file;
dom_info.restore_file = checkpoint_file;
dom_info.migrate_fd = -1;
+ dom_info.console_autoconnect = console_autoconnect;
rc = create_domain(&dom_info);
if (rc < 0)
_______________________________________________
Xen-changelog mailing list
Xen-changelog@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-changelog
|