Changeset 3406 in MondoRescue
- Timestamp:
- Aug 6, 2015, 8:10:25 AM (9 years ago)
- Location:
- branches/3.2
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/3.2/mindi/mindi
r3405 r3406 1504 1504 $ISO_CMD -U $ISO_OPT -V Mindi_Image -o $MINDI_CACHE/mindi.iso -b isolinux.bin -c boot.cat -no-emul-boot -boot-load-size 4 -boot-info-table . > /dev/null 2> $MINDI_TMP/mkisofs.log 1505 1505 else 1506 $ISO_CMD $ISO_OPT -V Mindi_Image -o $MINDI_CACHE/mindi.iso -b images/mindi-bootroot. $BOOT_SIZE.img -c images/boot.cat -no-emul-boot . > /dev/null 2> $MINDI_TMP/mkisofs.log1506 $ISO_CMD $ISO_OPT -V Mindi_Image -o $MINDI_CACHE/mindi.iso -b images/mindi-bootroot.img -c images/boot.cat -no-emul-boot . > /dev/null 2> $MINDI_TMP/mkisofs.log 1507 1507 fi 1508 1508 if [ "$?" -ne "0" ] ; then … … 1861 1861 TurnTgzIntoRdz $MINDI_LIB/rootfs $MINDI_TMP/initrd.img `du -sk $kernelpath | cut -f1` || Die "Could not turn rootfs into initrd.img; are you SURE your kernel supports loopfs?" 1862 1862 echo -en "..." 1863 imagefile=$MINDI_TMP/mindi-bootroot. $BOOT_SIZE.img1863 imagefile=$MINDI_TMP/mindi-bootroot.img 1864 1864 mkdir -p $mountpoint 1865 1865 dd if=/dev/zero of=$imagefile bs=1k count=$BOOT_SIZE &> /dev/null || Die "Cannot dd blank file" … … 1872 1872 1873 1873 # Only move it now to its final destination and use it now 1874 mv $imagefile $ imagesdir1875 imagefile=$ imagesdir/mindi-bootroot.$BOOT_SIZE.img1874 mv $imagefile $MINDI_CACHE 1875 imagefile=$MINDI_CACHE/mindi-bootroot.img 1876 1876 1877 1877 mount -t vfat -o loop $imagefile $mountpoint || LogAll "ERROR: Cannot mount (PBDI)" -
branches/3.2/mondo-doc/mindi.8
r2870 r3406 153 153 initrd image for bootable ISO image. 154 154 .TP 155 .I /var/cache/mindi/mindi-boot .F.img155 .I /var/cache/mindi/mindi-bootroot.img 156 156 .B mindi 157 boot media of size F [KB]. 158 .TP 159 .I /var/cache/mindi/mindi-root.F.img 160 .B mindi 161 root media of size F [KB]. 162 .TP 163 .I /var/cache/mindi/mindi-data.N.img 164 .B mindi 165 data media number N for boot/root media. 157 boot and root media. 166 158 .TP 167 159 .I /var/cache/mindi/mindi.iso -
branches/3.2/mondo/src/common/libmondo-archive.c
r3404 r3406 1807 1807 #else 1808 1808 log_msg(1, "Non-ia64 --> lilo"); 1809 mr_asprintf(full_isofs_cmd, "%s%s-b images/mindi-bootroot. 2880.img -c boot.cat -o '_ISO_' -J -V _CD#_ .",isofs_cmd,MONDO_MKISOFS);1809 mr_asprintf(full_isofs_cmd, "%s%s-b images/mindi-bootroot.img -c boot.cat -o '_ISO_' -J -V _CD#_ .",isofs_cmd,MONDO_MKISOFS); 1810 1810 // FIXME: fixed boot size probably wrong. lilo to be removed 1811 1811 res = eval_call_to_make_ISO(full_isofs_cmd, destfile, g_current_media_number, MONDO_LOGFILE, message_to_screen); -
branches/3.2/mondo/src/include/my-stuff.h
r3404 r3406 193 193 * @c mkisofs command to generate a bootable CD using ELILO, except for -o option and the directory to image. 194 194 */ 195 #define MONDO_MKISOFS_REGULAR_ELILO MONDO_MKISOFS"-J -no-emul-boot -b images/mindi-bootroot. "IA64_BOOT_SIZE".img -c boot.cat "195 #define MONDO_MKISOFS_REGULAR_ELILO MONDO_MKISOFS"-J -no-emul-boot -b images/mindi-bootroot.img -c boot.cat " 196 196 197 197 /** … … 208 208 * @c growisofs command to generate a bootable DVD using LILO, except for the directory to image. 209 209 */ 210 #define MONDO_GROWISOFS_REGULAR_ELILO "growisofs -use-the-force-luke -no-emul-boot -b images/mindi-boot .2880.img -c boot.cat -J -r -p MondoRescue -publisher www.mondorescue.org -A Mondo_Rescue_GPL -V _CD#_ -v"210 #define MONDO_GROWISOFS_REGULAR_ELILO "growisofs -use-the-force-luke -no-emul-boot -b images/mindi-bootroot.img -c boot.cat -J -r -p MondoRescue -publisher www.mondorescue.org -A Mondo_Rescue_GPL -V _CD#_ -v" 211 211 212 212 /**
Note:
See TracChangeset
for help on using the changeset viewer.