Changeset 1950 in MondoRescue
- Timestamp:
- May 26, 2008, 6:39:48 PM (17 years ago)
- Location:
- branches/2.2.6
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2.2.6/mindi/mindi
r1948 r1950 1427 1427 rm -Rf $MINDI_TMP/iso 1428 1428 mkdir -p $MINDI_TMP/iso/{images,archives,isolinux} 1429 cp -f $1/*. img $1/*.gz $MINDI_TMP/iso/images 2>> $LOGFILE || LogIt "OfferToMakeBootableISO: Cannot copy $ito $MINDI_TMP/iso/images"1429 cp -f $1/*.gz $MINDI_TMP/iso/images 2>> $LOGFILE || LogIt "OfferToMakeBootableISO: Cannot copy $1/*.gz to $MINDI_TMP/iso/images" 1430 1430 old_pwd=`pwd` 1431 1431 cd $MINDI_TMP/iso … … 1469 1469 else 1470 1470 $ISO_CMD $ISO_OPT -V Mindi_Image -o $MINDI_CACHE/mindi.iso -b images/mindi-bootroot.$BOOT_SIZE.img -c isolinux/boot.cat -no-emul-boot . > /dev/null 2> $MINDI_TMP/mkisofs.log 1471 rm -f images/mindi-bootroot.$BOOT_SIZE.img 1471 1472 fi 1472 1473 if [ "$?" -ne "0" ] ; then … … 2968 2969 fi 2969 2970 if [ _"$MONDO_SHARE" = _"" ] && [ "$ARCH" != "ia64" ]; then 2970 echo -en "Would you like to use LILO (instead of syslinux)\nfor your boot image (y/[n]) ?" 2971 read ch 2972 if [ "$ch" != "y" ] && [ "$ch" != "Y" ] ; then 2973 USE_LILO=no 2974 else 2975 USE_LILO=yes 2976 fi 2971 USE_LILO=no 2977 2972 fi 2978 2973 if [ "$YOUR_KERNEL_SUCKS" != "" ] || [ "$kernelpath" = "" ] || [ "$kernelpath" = "SUCKS" ] || [ "$kernelpath" = "FAILSAFE" ] ; then -
branches/2.2.6/mondo/src/common/libmondo-stream.c
r1949 r1950 683 683 paranoid_free(command); 684 684 685 asprintf(&command, "dd if=%s of=%s bs=2048", ntapedev, MINDI_CACHE"/mondorescue.iso");685 asprintf(&command, "dd if=%s of=%s bs=2048", MINDI_CACHE"/mondorescue.iso", ntapedev ); 686 686 res = run_program_and_log_output(command, 1); 687 687 paranoid_free(command);
Note:
See TracChangeset
for help on using the changeset viewer.