Changeset 1508 in MondoRescue
- Timestamp:
- Jun 20, 2007, 1:25:01 AM (18 years ago)
- Location:
- branches/stable
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/stable/mindi/distributions/conf/mindi.conf.dist
r1452 r1508 107 107 # Modules supported by mindi and required at boot time 108 108 # 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 s d_mod seagate sg sim710 sr_mod sym53c416 sym53c8xx sym53c8xx_2 t128 tmscsim u14-34f ultrastor wd7000 vmhgfs"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 scsi_transport_sas sd_mod seagate sg sim710 sr_mod sym53c416 sym53c8xx sym53c8xx_2 t128 tmscsim u14-34f ultrastor wd7000 vmhgfs" 110 110 mindi_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" 111 111 mindi_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 2822 2822 loaded_modules="$MODULES" 2823 2823 for modname in $1 ; do 2824 [ "`echo "$loaded_modules" | grep - F " $modname"`" ] && echo "$modname"2824 [ "`echo "$loaded_modules" | grep -w "$modname"`" ] && echo "$modname" 2825 2825 done 2826 2826 } -
branches/stable/mondo/src/common/libmondo-devices.c
r1489 r1508 1797 1797 if (!popup_and_get_string 1798 1798 ("Storage dir.", 1799 "Please enter the full path that containsyour ISO images. Example: /mnt/raid0_0",1799 "Please enter the full path name to the directory for your ISO images. Example: /mnt/raid0_0", 1800 1800 bkpinfo->isodir, MAX_STR_LEN / 4)) { 1801 1801 log_to_screen("User has chosen not to backup the PC"); -
branches/stable/mondo/src/common/libmondo-files.c
r1365 r1508 1163 1163 long long scratchLL; 1164 1164 1165 if (bkpinfo->media_size <= 0L || bkpinfo->backup_media_type == nfs) {1165 if (bkpinfo->media_size <= 0L) { 1166 1166 log_to_screen("Number of media required: UNKNOWN"); 1167 1167 return; -
branches/stable/tools/DISTROS
r1489 r1508 20 20 debian_3.1 21 21 debian_4.0 22 ubuntu_6.0 422 ubuntu_6.06 23 23 ubuntu_7.04 24 24 gentoo_1.6 -
branches/stable/tools/build2qemu
r1481 r1508 69 69 if [ $single -eq 0 ]; then 70 70 $TOOLHOME/file2ftp 71 ALLVMS="$VMS $VMS64" 72 else 73 ALLVMS="$VMS" 71 74 fi 72 75 … … 77 80 tar cfz $MONDOTMP/mkmondo.tar.gz $TOOLHOME $MONDOTMP/mkmondo $dir/${VER}-$TAG 78 81 79 for m in $ VMS $VMS64; do82 for m in $ALLVMS; do 80 83 echo "Working on $m" 81 84 vmp=0 -
branches/stable/tools/quality
r1196 r1508 51 51 find . -name '*.c' -o -name '*.h' | xargs splint +posixlib -Dlinux -I$TOOLHOME/../mondo/src/include 52 52 53 echo " " 54 echo "LoC: " 55 for 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`)) 58 done 59 echo "total $s usage : $tot" 53 60 rm -f /tmp/mondo.quality
Note:
See TracChangeset
for help on using the changeset viewer.