Changeset 3527 in MondoRescue for branches/3.2/mindi/mindi


Ignore:
Timestamp:
Mar 4, 2016, 6:47:07 AM (8 years ago)
Author:
Bruno Cornec
Message:

Improve mondoarchive/mindi interface

  • Rename the mindi image mindi.iso (was mondorescue.iso which was confusing)
  • If called from mondoarchive, mindi now copies as well kernel and initrd to the boot image
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/3.2/mindi/mindi

    r3525 r3527  
    15701570    fi
    15711571    cp -f $MONDO_SHARE/autorun $MINDI_TMP/target 2>> $LOGFILE
     1572    cp -f $MINDI_TMP/target/vmlinuz $MONDO_ROOT 2>> $LOGFILE
     1573    if [ "$?" -ne "0" ] ; then
     1574        LogAll "ERROR: Failed to copy $MINDI_TMP/vmlinuz to $MONDO_ROOT"
     1575        LogAll "       Please check the target directory."
     1576        retval=$(($retval+1))
     1577    fi
     1578    cp -f $MINDI_TMP/target/initrd.img $MONDO_ROOT 2>> $LOGFILE
     1579    if [ "$?" -ne "0" ] ; then
     1580        LogAll "ERROR: Failed to copy $MINDI_TMP/initrd.img to $MONDO_ROOT"
     1581        LogAll "       Please check the target directory."
     1582        retval=$(($retval+1))
     1583    fi
    15721584fi
    15731585
Note: See TracChangeset for help on using the changeset viewer.