Changeset 3428 in MondoRescue
- Timestamp:
- Aug 27, 2015, 2:48:37 AM (9 years ago)
- Location:
- branches/3.2
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/3.2/mindi/mindi
r3427 r3428 1943 1943 [ -e "$MINDI_LIB/memdisk" ] && cp -f $MINDI_LIB/memdisk $mountpoint 2>> $LOGFILE 1944 1944 1945 #cp `dirname $kernelpath`/*.efi $mountpoint 2>> $LOGFILE 1945 # copy boot stuff now generated in PrepareDataDiskImage 1946 if [ "$BOOT_TYPE" = "UEFI" ]; then 1947 (cd $mountpoint ; tar xfz $MINDI_CACHE/all.tar.gz ./EFI) 1948 else 1949 (cd $mountpoint ; tar xfz $MINDI_CACHE/all.tar.gz ./boot) 1950 fi 1951 1946 1952 umount $mountpoint || Die "Cannot unmount mountpoint ($mountpoint)" 1947 1953 echo -en "..." … … 3275 3281 fi 3276 3282 if [ -f $MINDI_LIB/rootfs/usr/bin/busybox ]; then 3277 LogIt "INFO: Mindi-`$MINDI_LIB/rootfs/usr/bin/busybox 2>&1 | head -1`"3283 LogIt "INFO: You are using Mindi-`$MINDI_LIB/rootfs/usr/bin/busybox 2>&1 | head -1`" 3278 3284 else 3279 3285 LogIt "ERROR: Unable to find mindi-busybox, please install it" -
branches/3.2/mondo/src/mondoarchive/mondoarchive.c
r3380 r3428 384 384 /* Report result of entire operation (success? errors?) */ 385 385 if (!retval) { 386 mvaddstr_and_log_it(g_currentY++, 0, 387 "Backup and/or verify ran to completion. Everything appears to be fine."); 386 mvaddstr_and_log_it(g_currentY++, 0, "Backup and/or verify ran to completion. Everything appears to be fine."); 388 387 } else { 389 mvaddstr_and_log_it(g_currentY++, 0, 390 "Backup and/or verify ran to completion. However, errors did occur."); 388 mvaddstr_and_log_it(g_currentY++, 0, "Backup and/or verify ran to completion. However, errors did occur."); 391 389 } 392 390 393 391 if (does_file_exist(MINDI_CACHE"/mondorescue.iso")) { 394 log_to_screen 395 (MINDI_CACHE"/mondorescue.iso, a boot/utility CD, is available if you want it."); 392 log_to_screen(MINDI_CACHE"/mondorescue.iso, a boot/utility CD, is available if you want it."); 396 393 } 397 394
Note:
See TracChangeset
for help on using the changeset viewer.