Changeset 1508 in MondoRescue


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
Files:
7 edited

Legend:

Unmodified
Added
Removed
  • branches/stable/mindi/distributions/conf/mindi.conf.dist

    r1452 r1508  
    107107# Modules supported by mindi and required at boot time
    108108#
    109 mindi_scsi_mods="3w-xxxx 3w_xxxx 3w-9xxx 3w_9xxx 53c7,8xx a100u2w a320raid aacraid adpahci advansys aha152x aha1542 aha1740 aic79xx aic79xx_mod aic7xxx aic7xxx_mod aic7xxx_old AM53C974 atp870u BusLogic cciss cpqfc dmx3191d dpt_i2o dtc eata eata_dma eata_pio fdomain gdth g_NCR5380 i2o_block i2o_core ide-scsi ieee1394 imm in2000 initio ips iscsi isp megaraid megaraid_mm megaraid_mbox mptbase mptscsih mptsas mptspi mptfc mptscsi mptctl NCR53c406a ncr53c8xx nsp32 pas16 pci2000 pci2220i pcmcia ppa psi240i qla1280 qla2200 qla2300 qla2xxx qla2xxx_conf qlogicfas qlogicfc qlogicisp raw1394 scsi_debug scsi_mod sd_mod seagate sg sim710 sr_mod sym53c416 sym53c8xx sym53c8xx_2 t128 tmscsim u14-34f ultrastor wd7000 vmhgfs"
     109mindi_scsi_mods="3w-xxxx 3w_xxxx 3w-9xxx 3w_9xxx 53c7,8xx a100u2w a320raid aacraid adpahci advansys aha152x aha1542 aha1740 aic79xx aic79xx_mod aic7xxx aic7xxx_mod aic7xxx_old AM53C974 atp870u BusLogic cciss cpqfc dmx3191d dpt_i2o dtc eata eata_dma eata_pio fdomain gdth g_NCR5380 i2o_block i2o_core ide-scsi ieee1394 imm in2000 initio ips iscsi isp megaraid megaraid_mm megaraid_mbox mptbase mptscsih mptsas mptspi mptfc mptscsi mptctl NCR53c406a ncr53c8xx nsp32 pas16 pci2000 pci2220i pcmcia ppa psi240i qla1280 qla2200 qla2300 qla2xxx qla2xxx_conf qlogicfas qlogicfc qlogicisp raw1394 scsi_debug scsi_mod scsi_transport_sas sd_mod seagate sg sim710 sr_mod sym53c416 sym53c8xx sym53c8xx_2 t128 tmscsim u14-34f ultrastor wd7000 vmhgfs"
    110110mindi_ide_mods="ide ide-generic ide-detect ide-mod ide-disk ide-cd ide_cd ide-cs ide-core ide_core edd paride ata_generic ata_piix libata via82cxxx generic nvidia ahci sata_nv cmd64x"
    111111mindi_usb_mods="usb-storage usb-ohci usb-uhci usbcore usb_storage input hid uhci_hcd ehci_hcd uhci-hcd ehci-hcd ohci-hcd ohci_hcd usbkbd usbhid keybdev mousedev"
  • branches/stable/mindi/mindi

    r1500 r1508  
    28222822    loaded_modules="$MODULES"
    28232823    for modname in $1 ; do
    2824         [ "`echo "$loaded_modules" | grep -F " $modname "`" ] && echo "$modname"
     2824        [ "`echo "$loaded_modules" | grep -w "$modname"`" ] && echo "$modname"
    28252825    done
    28262826}
  • branches/stable/mondo/src/common/libmondo-devices.c

    r1489 r1508  
    17971797            if (!popup_and_get_string
    17981798                ("Storage dir.",
    1799                  "Please enter the full path that contains your ISO images.  Example: /mnt/raid0_0",
     1799                 "Please enter the full path name to the directory for your ISO images.  Example: /mnt/raid0_0",
    18001800                 bkpinfo->isodir, MAX_STR_LEN / 4)) {
    18011801                log_to_screen("User has chosen not to backup the PC");
  • branches/stable/mondo/src/common/libmondo-files.c

    r1365 r1508  
    11631163    long long scratchLL;
    11641164
    1165     if (bkpinfo->media_size <= 0L || bkpinfo->backup_media_type == nfs) {
     1165    if (bkpinfo->media_size <= 0L) {
    11661166        log_to_screen("Number of media required: UNKNOWN");
    11671167        return;
  • 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.