source: MondoRescue/branches/2.2.4/tools/build2qemu@ 3470

Last change on this file since 3470 was 1504, checked in by Bruno Cornec, 17 years ago

Do not launch 64 bits versions if called with specific VMs

  • Property svn:executable set to *
File size: 2.5 KB
RevLine 
[440]1#!/bin/bash
2#
3# $Id$
4#
[553]5# Script build packages on various distributions with qemu
[440]6#
7
[1490]8#if [ _"$1" = _"" ]; then
[572]9 #echo "Syntax: build2qemu [version-tag [vm1]..|vmx]] )"
10 #exit -1
11#fi
12
[985]13# Syntax: build2qemu [version-tag [--pkg "pkg1...pkgn"] [vm1]..|vmx]]
[572]14
[757]15(
[572]16dname=`dirname $0`
17prem=`echo $dname |cut -c1`
[1490]18if [ ${prem} = "/" ]; then
[572]19 export TOOLHOME=$dname
20else
21 export TOOLHOME=${PWD}/$dname
[440]22fi
23
[553]24. $TOOLHOME/common-env
25. $TOOLHOME/distro-env
26
27# We need to get $VER and $TAG
28if [ "$1" = "" ]; then
29 LAST=`cat ${TOPDIR}/LAST`
[440]30else
[553]31 LAST=$1
32 shift
[440]33fi
[553]34VER=`echo $LAST | cut -d- -f1`
35TAG=`echo $LAST | cut -d- -f2`
36echo "Working on ${VER}-$TAG"
[440]37
[985]38c=""
[1490]39if [ _"$1" = _"--pkg" ]; then
[985]40 shift
41 c=$1
42 shift
43fi
44
[1490]45if [ _"$1" = _"" ]; then
[556]46 export VMS=`cat ${TOOLHOME}/DISTROS`
[596]47 single=0
[553]48else
[596]49 export VMS="$*"
50 single=1
[553]51fi
52
[1479]53VMS64=`echo $VMS | perl -pi -e 's/\b([A-z0-9_.]+)\b/$1_64/g'`
54
[882]55cat > $MONDOTMP/mkmondo << EOF
[440]56#!/bin/bash
57
58export LANG="C"
59export LANGUAGE="C"
60export LC_ALL="C"
[553]61export TOOLHOME=$TOOLHOME
[440]62
[985]63$TOOLHOME/build2pkg $LAST $c < /dev/null
64$TOOLHOME/pkg2ftp $LAST $c
[440]65EOF
[882]66chmod 755 $MONDOTMP/mkmondo
[440]67
[596]68if [ $single -eq 0 ]; then
69 $TOOLHOME/file2ftp
[1504]70 ALLVMS="$VMS $VMS64"
71else
72 ALLVMS="$VMS"
[596]73fi
[553]74
[888]75# TOPDIR contains ../.. which causes problems to tar
76# so we need to recompute it
77cd $TOPDIR
78dir=`pwd`
79tar cfz $MONDOTMP/mkmondo.tar.gz $TOOLHOME $MONDOTMP/mkmondo $dir/${VER}-$TAG
80
[1504]81for m in $ALLVMS; do
[1012]82 echo "Working on $m"
[440]83 vmp=0
[556]84 if [ ! -f /users/qemu/$m.qemu ]; then
[1479]85 echo $m | grep -Eq '_64$'
86 if [ $? -eq 0 ]; then
87 echo "VM unaccessible. No x86_64 version yet probably"
88 continue
89 else
[440]90 echo "VM unaccessible. Verify NFS mount"
[882]91 rm -rf $MONDOTMP
[440]92 exit -1
[1479]93 fi
[440]94 fi
[721]95 if [ _"$sp" = _"" ]; then
96 export sp=2222
97 fi
[556]98 ps auxww | grep qemu | grep -v grep | grep -q /users/qemu/$m.qemu
[440]99 if [ $? -ne 0 ]; then
100 # Virtual machine alreday started
101 vmp=1
[556]102 $TOOLHOME/mkqemu $m &
[519]103 sleep 300
[440]104 fi
[882]105 scp -P $sp $MONDOTMP/mkmondo.tar.gz ~/.rpmmacros ~/.rpmrc bruno@localhost:
[599]106 rdate=`date "+%m%d%H%M"`
[1011]107 ssh -q -p $sp root@localhost "date $rdate"
108 ssh -q -p $sp bruno@localhost "cd / ; rm -rf ~bruno/mondo ~bruno/RPMS/BUILD/* ~bruno/RPMS/tmp/* /tmp/* ; tar xfz ~bruno/mkmondo.tar.gz ; $MONDOTMP/mkmondo " | tee $MONDOTMP/mkvm.log
[440]109 if [ $vmp -eq 1 ]; then
[1011]110 ssh -q -p $sp root@localhost "halt -p"
[519]111 sleep 300
[599]112 proces=`ps auxww | grep qemu | grep -v grep | grep /users/qemu/$m.qemu | awk '{print $2}'`
[519]113 if [ "$proces" != "" ]; then
114 kill $proces
[603]115 sleep 10
[519]116 fi
[440]117 fi
118done
[572]119
120# Should be removed at the end
[882]121rm -rf $MONDOTMP
[757]122) 2>&1 | tee /tmp/build2qemu.log
Note: See TracBrowser for help on using the repository browser.