source: MondoRescue/branches/stable/tools/build2qemu@ 1481

Last change on this file since 1481 was 1481, checked in by Bruno Cornec, 17 years ago
  • Improve QEMU doc
  • Preparation for x86_64 build with QEMU

merge -r1477:1480 $SVN_M/branches/2.2.4

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