Changeset 1950 in MondoRescue


Ignore:
Timestamp:
May 26, 2008, 6:39:48 PM (16 years ago)
Author:
Bruno Cornec
Message:
  • Do not propose to use ILLO in mindi standalone
  • Remove temporary .img files at the end of mindi
  • Push the iso image on the tape the right way
Location:
branches/2.2.6
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/2.2.6/mindi/mindi

    r1948 r1950  
    14271427    rm -Rf $MINDI_TMP/iso
    14281428    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 $i to $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"
    14301430    old_pwd=`pwd`
    14311431    cd $MINDI_TMP/iso
     
    14691469    else
    14701470        $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
    14711472    fi
    14721473    if [ "$?" -ne "0" ] ; then
     
    29682969fi
    29692970if [ _"$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
    29772972fi
    29782973if [ "$YOUR_KERNEL_SUCKS" != "" ] || [ "$kernelpath" = "" ] || [ "$kernelpath" = "SUCKS" ] || [ "$kernelpath" = "FAILSAFE" ] ; then
  • branches/2.2.6/mondo/src/common/libmondo-stream.c

    r1949 r1950  
    683683    paranoid_free(command);
    684684
    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 );
    686686    res = run_program_and_log_output(command, 1);
    687687    paranoid_free(command);
Note: See TracChangeset for help on using the changeset viewer.