Changeset 1508 in MondoRescue for branches/stable/tools


Ignore:
Timestamp:
Jun 20, 2007, 1:25:01 AM (17 years ago)
Author:
Bruno Cornec
Message:
  • Add scsi_transport_sas to SCSI_MODS for LSI SAS1064E on CentOS 5 (Brandon Poyner bpoyner_at_ccac.edu)
  • Fix a bug on the MODULE variable and grep -F usage with spaces.
  • Fix Virtual media usage (Patrick Albert)
  • Also computes number of media for NFS backups
  • Do not launch 64 bits versions if called with specific VMs
  • Improve message around ISO directory (Patrick Albert and Bryan Gartner)
  • Fix mondo mailing list archive link
  • Ubuntu version is 6.06
Location:
branches/stable/tools
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • branches/stable/tools/DISTROS

    r1489 r1508  
    2020debian_3.1
    2121debian_4.0
    22 ubuntu_6.04
     22ubuntu_6.06
    2323ubuntu_7.04
    2424gentoo_1.6
  • branches/stable/tools/build2qemu

    r1481 r1508  
    6969if [ $single -eq 0 ]; then
    7070    $TOOLHOME/file2ftp
     71    ALLVMS="$VMS $VMS64"
     72else
     73    ALLVMS="$VMS"
    7174fi
    7275
     
    7780tar cfz $MONDOTMP/mkmondo.tar.gz $TOOLHOME $MONDOTMP/mkmondo $dir/${VER}-$TAG
    7881
    79 for m in $VMS $VMS64; do
     82for m in $ALLVMS; do
    8083    echo "Working on $m"
    8184    vmp=0
  • branches/stable/tools/quality

    r1196 r1508  
    5151find . -name '*.c' -o -name '*.h' | xargs splint +posixlib -Dlinux -I$TOOLHOME/../mondo/src/include
    5252
     53echo " "
     54echo "LoC: "
     55for i in `find . -name '*.c' -o -name '*.h' |  egrep -v '\.svn|/\*|monitas|mindi-busybox' `; do
     56    echo " === $i"
     57    ((tot=$tot+`echo $i | cut -d: -f2`))
     58done
     59echo "total $s usage : $tot"
    5360rm -f /tmp/mondo.quality
Note: See TracChangeset for help on using the changeset viewer.