Changeset 744 in MondoRescue for branches/stable
- Timestamp:
- Aug 5, 2006, 12:35:09 AM (18 years ago)
- Location:
- branches/stable
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/stable/mindi/ChangeLog
r730 r744 3 3 MINDI CHANGES 4 4 5 1.0.9 (2006-07-30) 5 1.0.9 (2006-08-04) 6 - Fix for bug #8 keyboard support incorrect (Bruno Cornec) 7 - New NFS/PXE support. start-nfs is now a fixed script. Allow more possibilities at restore time (Bruno Cornec) 8 - new global variables + Bug fixes for LVM (Bruno Cornec) 6 9 - SuSE RPMS now use bzip2 (Lars Rupp/Bruno Cornec) 7 10 - Fix a bug for filesystems with LABEL in fstab not mounted (Bruno Cornec) -
branches/stable/mindi/mindi
r742 r744 1339 1339 done 1340 1340 [ "$IMAGE_DEVS" != "" ] && all_partitions="`echo "$all_partitions $IMAGE_DEVS" | tr ' ' '\n' | sort -u | tr '\n ' ' '`" 1341 printf " %-15s %-15s %-15s %-15s \n" DEVICE MOUNTPOINT FORMAT "SIZE (MB)"1341 printf " %-15s %-15s %-15s %-15s %-15s\n" DEVICE MOUNTPOINT FORMAT "SIZE (MB)" LABEL 1342 1342 useless_dev="/dev/floppy /dev/fd0h1440 /dev/fd0H1440 /dev/cdrom /dev/cdrom/cdrom /dev/cdrom/cdrom1 /dev/cdrom/cdrom2 /dev/cdrom0 /dev/cdrom1 /dev/cdrom2 /dev/cdrom3 /dev/cdrw /dev/scd /dev/ram :/ /dev/sr0 /dev/sr1 /dev/cdrom1" 1343 1343 for c_p in $all_partitions ; do … … 1421 1421 1422 1422 current_lvolume="$current_partition" 1423 if [ $LVM = "v2" ] && [ -z "`$LVMCMD lvdisplay $current_partition 2> /dev/null`" ]; then1423 if [ $LVM = "v2" ] && [ "`$LVMCMD pvdisplay $current_partition 2> /dev/null`" ]; then 1424 1424 partition_stub="`echo "$current_partition" | sed "s|^/dev/mapper/|/dev/|" | cut -d"-" -f1`" 1425 1425 current_lvolume="`find /dev -lname "$current_partition" | grep "^$partition_stub"`" … … 1427 1427 # End of LVM device style variation code (other than $current_lvolume). 1428 1428 1429 if [ $LVM != "false" ] && [ "`$LVMCMD lvdisplay $current_lvolume 2> /dev/null`" ]; then1429 if [ $LVM != "false" ] && [ "`$LVMCMD pvdisplay $current_lvolume 2> /dev/null`" ]; then 1430 1430 partition_size="lvm" 1431 1431 else -
branches/stable/mondo/ChangeLog
r730 r744 3 3 MONDO CHANGES 4 4 5 2.0.9 (2006-07-30) 5 2.0.9 (2006-08-04) 6 - Preliminary build process working for Debian and Gentoo (Bruno Cornec) 7 - New NFS/PXE support. start-nfs is now a fixed script. Allow more possibilities at restore time (Bruno Cornec) 8 - Fix some compiler warnings for 64bits mode (Andree Leidenfrost) 6 9 - Fix various screen corruption for 'Configure LVM'/RAID sync (Andree Leidenfrost) 7 10 - SuSE RPMS now use bzip2 (Lars Rupp/Bruno Cornec)
Note:
See TracChangeset
for help on using the changeset viewer.