Changeset 744 in MondoRescue


Ignore:
Timestamp:
Aug 5, 2006, 12:35:09 AM (18 years ago)
Author:
Bruno Cornec
Message:

With that version mindi --makemountlist works for RHEL4 + LVMv2 + LABEL

Location:
branches/stable
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • branches/stable/mindi/ChangeLog

    r730 r744  
    33MINDI CHANGES
    44
    5 1.0.9 (2006-07-30)
     51.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)
    69- SuSE RPMS now use bzip2 (Lars Rupp/Bruno Cornec)
    710- Fix a bug for filesystems with LABEL in fstab not mounted (Bruno Cornec)
  • branches/stable/mindi/mindi

    r742 r744  
    13391339    done
    13401340    [ "$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
    13421342    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"
    13431343    for c_p in $all_partitions ; do
     
    14211421
    14221422        current_lvolume="$current_partition"
    1423         if [ $LVM = "v2" ] && [ -z "`$LVMCMD lvdisplay $current_partition 2> /dev/null`" ]; then
     1423        if [ $LVM = "v2" ] && [ "`$LVMCMD pvdisplay $current_partition 2> /dev/null`" ]; then
    14241424            partition_stub="`echo "$current_partition" | sed "s|^/dev/mapper/|/dev/|" | cut -d"-" -f1`"
    14251425            current_lvolume="`find /dev -lname "$current_partition" | grep "^$partition_stub"`"
     
    14271427        # End of LVM device style variation code (other than $current_lvolume).
    14281428
    1429         if [ $LVM != "false" ] && [ "`$LVMCMD lvdisplay $current_lvolume 2> /dev/null`" ]; then
     1429        if [ $LVM != "false" ] && [ "`$LVMCMD pvdisplay $current_lvolume 2> /dev/null`" ]; then
    14301430            partition_size="lvm"
    14311431        else
  • branches/stable/mondo/ChangeLog

    r730 r744  
    33MONDO CHANGES
    44
    5 2.0.9 (2006-07-30)
     52.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)
    69- Fix various screen corruption for 'Configure LVM'/RAID sync (Andree Leidenfrost)
    710- SuSE RPMS now use bzip2 (Lars Rupp/Bruno Cornec)
Note: See TracChangeset for help on using the changeset viewer.