- Timestamp:
- Mar 9, 2016, 7:35:58 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/3.2/mindi/mindi
r3532 r3533 1764 1764 if [ "$target" = "ISO" ]; then 1765 1765 # ISO 1766 if [ "$ARCH" != "ia64" ] ; then1766 if [ "$ARCH" != "ia64" ] && [ "$BOOT_TYPE" = "BIOS" ]; then 1767 1767 CMD="$ISO_CMD $ISO_OPT -b $tbc/isolinux.bin -c $tbc/boot.cat -U -boot-load-size 4 -boot-info-table" 1768 1768 MakeISO … … 1776 1776 if [ "$target" = "ISO" ]; then 1777 1777 cp $part $MINDI_CACHE 1778 if [ "$ARCH" = "ia64" ] ; then1778 if [ "$ARCH" = "ia64" ] || [ "$BOOT_TYPE" = "UEFI" ]; then 1779 1779 # Here we need to remount to put the boot image at the right place now it's available 1780 1780 mount -t vfat $mount_opt $part $MINDI_TMP/mpt 2>> $LOGFILE 1781 cp $MINDI_CACHE/$part $MINDI_TMP/mpt/images 1781 # We don't need the previous content used to make it, free space 1782 rm -rf $MINDI_TMP/mpt/{EFI,initrd.img,vmlinuz,images/all.tar.gz} 1783 # We need the boot image now 1784 cp $MINDI_CACHE/mindi-bootroot.img $MINDI_TMP/mpt/images 1782 1785 MakeISO 1783 1786 umount $MINDI_TMP/mpt || Die "Unable to unmount $MINDI_TMP/mpt" … … 2716 2719 fnllist=`echo $finallist | tr ' ' '\n' | sort -u | tr '\n' ' '` 2717 2720 LogFile "INFO: Copying udev related files with cp -a --parents $fnllist -t $mountpoint/" 2718 cp -a --parents $fnllist $lis3 -t $mountpoint/ 2> $templog || LogIt " ERROR: Problem in udev.lis analysis" $templog2721 cp -a --parents $fnllist $lis3 -t $mountpoint/ 2> $templog || LogIt "WARNING: Problem in udev.lis analysis" $templog 2719 2722 rm -f $MINDI_TMP/udev.lis 2720 2723 else
Note:
See TracChangeset
for help on using the changeset viewer.