Changeset 1567 in MondoRescue
- Timestamp:
- Jul 25, 2007, 6:13:51 PM (18 years ago)
- Location:
- branches/2.2.5
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2.2.5/mindi-busybox/TAG
r1446 r1567 1 3 1 4 -
branches/2.2.5/mindi/VERSION
r1380 r1567 1 1.2. 41 1.2.5 -
branches/2.2.5/mindi/mindi
r1566 r1567 3166 3166 3167 3167 echo "Ramdisk will be $ramdisk_size KB" >> $LOGFILE 3168 if [ "$ USE_LILO" = "yes" ] ; then3169 if [ "$ARCH" = "ia64" ] ; then3170 PrepareBootDiskImage_LILO $CACHE_LOC $BOOT_SIZE $kernelpath $ramdisk_size || Die "Failed to create ia64 floppy disk image." 3171 else3168 if [ "$ARCH" = "ia64" ] ; then 3169 PrepareBootDiskImage_LILO $CACHE_LOC $BOOT_SIZE $kernelpath $ramdisk_size || Die "Failed to create ia64 floppy disk image." 3170 else 3171 if [ "$USE_LILO" = "yes" ] ; then 3172 3172 if ! PrepareBootDiskImage_LILO $CACHE_LOC 1722 $kernelpath $ramdisk_size ; then 3173 3173 LogIt "WARNING - failed to create 1.72MB boot image." … … 3179 3179 PrepareBootDiskImage_LILO $CACHE_LOC $BOOT_SIZE $kernelpath $ramdisk_size || Die "Failed to create 2.88MB floppy disk image." 3180 3180 fi 3181 fi3182 else 3183 if ! PrepareBootDiskImage_SYSLINUX $CACHE_LOC 1722 $kernelpath $ramdisk_size ; then3184 LogIt "WARNING - failed to create 1.72MB boot image."3185 LogIt "Please reduce your kernel's size if you want to make a 1.72MB floppy disk."3186 if ! PrepareBootDiskImage_SYSLINUX $CACHE_LOC 2880 $kernelpath $ramdisk_size ; then3187 LogIt "WARNING - failed to create 2.88MB floppy disk image."3188 LogIt "Please reduce your kernel's size if you want to make a 2.88MB floppy disk."3189 PrepareBootDiskImage_SYSLINUX $CACHE_LOC $BOOT_SIZE $kernelpath $ramdisk_size || Die "Failed to create 5.76MB floppy disk image."3181 else 3182 if ! PrepareBootDiskImage_SYSLINUX $CACHE_LOC 1722 $kernelpath $ramdisk_size ; then 3183 LogIt "WARNING - failed to create 1.72MB boot image." 3184 LogIt "Please reduce your kernel's size if you want to make a 1.72MB floppy disk." 3185 if ! PrepareBootDiskImage_SYSLINUX $CACHE_LOC 2880 $kernelpath $ramdisk_size ; then 3186 LogIt "WARNING - failed to create 2.88MB floppy disk image." 3187 LogIt "Please reduce your kernel's size if you want to make a 2.88MB floppy disk." 3188 PrepareBootDiskImage_SYSLINUX $CACHE_LOC $BOOT_SIZE $kernelpath $ramdisk_size || Die "Failed to create 5.76MB floppy disk image." 3189 fi 3190 3190 fi 3191 3191 fi -
branches/2.2.5/mondo-doc/VERSION
r1380 r1567 1 2.2. 41 2.2.5 -
branches/2.2.5/mondo/VERSION
r1380 r1567 1 2.2. 41 2.2.5 -
branches/2.2.5/mondo/src/common/libmondo-archive.c
r1563 r1567 900 900 run_program_and_log_output 901 901 ("ln -sf /boot/efi/efi/SuSE/elilo.conf /etc/elilo.conf", 902 5); 903 } 904 if (!does_file_exist("/etc/elilo.conf") 905 && does_file_exist("/boot/efi/efi/debian/elilo.conf")) { 906 run_program_and_log_output 907 ("ln -sf /boot/efi/efi/debian/elilo.conf /etc/elilo.conf", 908 5); 909 if (!does_file_exist("/etc/elilo.conf") 910 && does_file_exist("/boot//efi/debian/elilo.conf")) { 911 run_program_and_log_output 912 ("ln -sf /boot/efi/debian/elilo.conf /etc/elilo.conf", 902 913 5); 903 914 } -
branches/2.2.5/mondo/src/restore-scripts/mondo/stabelilo-me
r1563 r1567 29 29 LogIt "elilo.conf found at /mnt/RESTORING/boot/efi/efi/SuSE/elilo.conf" 2 30 30 old_eliloconf="/mnt/RESTORING/boot/efi/efi/SuSE/elilo.conf" 31 return 0 32 elif [ -f "/mnt/RESTORING/boot/efi/efi/debian/elilo.conf" ] ; then 33 LogIt "elilo.conf found at /mnt/RESTORING/boot/efi/efi/debian/elilo.conf" 2 34 old_eliloconf="/mnt/RESTORING/boot/efi/efi/debian/elilo.conf" 35 return 0 36 elif [ -f "/mnt/RESTORING/boot/efi/debian/elilo.conf" ] ; then 37 LogIt "elilo.conf found at /mnt/RESTORING/boot/efi/debian/elilo.conf" 2 38 old_eliloconf="/mnt/RESTORING/boot/efi/debian/elilo.conf" 31 39 return 0 32 40 else
Note:
See TracChangeset
for help on using the changeset viewer.