aboutsummaryrefslogtreecommitdiffstats
path: root/stubdom/stubdom-dm
diff options
context:
space:
mode:
authorKeir Fraser <keir.fraser@citrix.com>2008-03-18 11:27:36 +0000
committerKeir Fraser <keir.fraser@citrix.com>2008-03-18 11:27:36 +0000
commitcaa44aa73f8b0020883911b9947d3ca031d225c1 (patch)
tree68df6994cff10750fb44451e624ca47f4634c5ea /stubdom/stubdom-dm
parent37a1d36134c14c297416204b6cc13888483e2eea (diff)
downloadxen-caa44aa73f8b0020883911b9947d3ca031d225c1.tar.gz
xen-caa44aa73f8b0020883911b9947d3ca031d225c1.tar.bz2
xen-caa44aa73f8b0020883911b9947d3ca031d225c1.zip
stubdom: support save/restore by passing the -loadvm parameter,
letting the stubdomain access the save area, and having it watch the correct xenstore node. Signed-off-by: Samuel Thibault <samuel.thibault@eu.citrix.com>
Diffstat (limited to 'stubdom/stubdom-dm')
-rw-r--r--stubdom/stubdom-dm18
1 files changed, 15 insertions, 3 deletions
diff --git a/stubdom/stubdom-dm b/stubdom/stubdom-dm
index 256501bf0b..03fbd3ba0d 100644
--- a/stubdom/stubdom-dm
+++ b/stubdom/stubdom-dm
@@ -14,18 +14,30 @@ domid=
domname=
vncviewer=0
vncpid=
+extra=
while [ "$#" -gt 0 ];
do
if [ "$#" -ge 2 ];
then
case "$1" in
- -d) domid=$2; shift ;;
- -domain-name) domname=$2; shift ;;
+ -d)
+ domid=$2;
+ extra="$extra -d $domid";
+ shift
+ ;;
+ -domain-name)
+ domname=$2;
+ shift
+ ;;
-vnc)
ip=${2%:*};
vnc_port=${2#*:};
shift
;;
+ -loadvm)
+ extra="$extra -loadvm $2";
+ shift
+ ;;
esac
fi
case "$1" in
@@ -60,7 +72,7 @@ do
sleep 1
done
-creation="xm create -c stubdom-$domname target=$domid memory=32"
+creation="xm create -c stubdom-$domname target=$domid memory=32 extra=\"$extra\""
(while true ; do sleep 60 ; done) | $creation &
#xterm -geometry +0+0 -e /bin/sh -c "$creation ; echo ; echo press ENTER to shut down ; read" &