source: MondoRescue/branches/stable/tools/setupqemu@ 1886

Last change on this file since 1886 was 1693, checked in by Bruno Cornec, 17 years ago
  • Remove useless copy from mindi to mondo at end of USB handling
  • Fix PB macro vs tools/*2build issue
  • make_usb_fs change of interface (doesn't need a parameter)
  • Fix USB support in mondo to avoid multiple copies of files
  • Use first partiion in mondo for USB device
  • Fixes for USB CLI for both mondo/mindi
  • Try to add USB support for mondoarchive with new functions
  • du => deb for similarity with other distro type under pbconf
  • migrate gento build files under pb
  • remove now obsolete rpm spec file and gentoo build files from distributions
  • Remove DOCDIR usage in mindi + various build fixes

(merge -r1680:1692 $SVN_M/branches/2.2.5)

  • Property svn:executable set to *
File size: 741 bytes
Line 
1#!/bin/bash
2
3(
4if [ _"$1" == _"" ]; then
5 echo "Syntax: setupqemu VM|all"
6 exit -1
7fi
8cat /users/bruno/pb/svn/devel/pb/contrib/pbsetupqemu /users/bruno/pb/svn/devel/pb/lib/ProjectBuilder/Distribution.pm > /tmp/pbscript
9if [ _"$1" == "all" ]; then
10 pb -r `pwd` -p mondorescue -a root -s /tmp/pbscript script2vm
11 ssh -p 2222 root@localhost halt
12 sleep 120
13 ps auhxww | grep qemu | grep -Ev 'grep|setupqemu' | awk '{print $2}' | xargs kill
14else
15 for m in $*; do
16 pb -r `pwd` -p mondorescue -m $m -a root -s /tmp/pbscript script2vm ; pb -p mondorescue -m $m build2vm
17 #ssh -p 2222 root@localhost halt
18 #sleep 120
19 #ps auhxww | grep qemu | grep -Ev 'grep|setupqemu' | awk '{print $2}' | xargs kill -9
20 done
21fi
22) 2>&1 | tee /tmp/setupqemu.log
Note: See TracBrowser for help on using the repository browser.