diff options
author | Andreas Steffen <andreas.steffen@strongswan.org> | 2007-01-11 20:07:05 +0000 |
---|---|---|
committer | Andreas Steffen <andreas.steffen@strongswan.org> | 2007-01-11 20:07:05 +0000 |
commit | 053ce451b19ae84c807ff6920b10efb30d8e0aa4 (patch) | |
tree | 2a6104d07625ab8aff16e6542fafc873f1853fcd /testing/scripts/xstart-umls | |
parent | 883c1e30847c4d56ebc56f7b7ee570b0a5dab43f (diff) | |
download | strongswan-053ce451b19ae84c807ff6920b10efb30d8e0aa4.tar.bz2 strongswan-053ce451b19ae84c807ff6920b10efb30d8e0aa4.tar.xz |
use uml_mconsole to check end of booting process
Diffstat (limited to 'testing/scripts/xstart-umls')
-rwxr-xr-x | testing/scripts/xstart-umls | 16 |
1 files changed, 12 insertions, 4 deletions
diff --git a/testing/scripts/xstart-umls b/testing/scripts/xstart-umls index 13c5d10a1..9efbd1497 100755 --- a/testing/scripts/xstart-umls +++ b/testing/scripts/xstart-umls @@ -35,6 +35,12 @@ BOOTING_HOSTS="" count_max=12 count=0 +#position of xterm window on the desktop +x0=8 +y0=8 +dx=12 +dy=24 + for host in $HOSTS do up=0 @@ -57,13 +63,16 @@ do [ -f $UMLHOSTFS ] || die "!! uml root file system '$UMLHOSTFS' not found" cecho-n " * Starting ${host}.." - eval xterm -title ${host} -rightbar -sb -sl 500 -e "$UMLKERNEL \ + eval xterm -title ${host} -geometry "+${x0}+${y0}" -rightbar -sb -sl 500 -e "$UMLKERNEL \ umid=${host} \ ubda=$UMLHOSTFS \ \$SWITCH_${host} \ mem=${MEM}M con=pty con0=fd:0,fd:1" & cecho "done" fi + let "x0+=dx" + let "y0+=dy" + sleep 15 done if [ -z "$BOOTING_HOSTS" ] @@ -90,14 +99,13 @@ do exit 1 fi - pid=`cat ~/.uml/$host/pid` - up=`ps up $pid | grep agetty | wc -l` + up=`uml_mconsole $host proc net/route 2> /dev/null | grep eth0 | wc -l` while [ $count -lt $count_max ] && [ $up -eq 0 ] do cecho-n "." sleep 5 - up=`ps up $pid | grep agetty | wc -l` + up=`uml_mconsole $host proc net/route 2> /dev/null | grep eth0 | wc -l` let "count+=1" done |