Changeset 1500 in MondoRescue for branches/stable/mindi


Ignore:
Timestamp:
Jun 9, 2007, 2:05:52 AM (18 years ago)
Author:
Bruno Cornec
Message:
  • ChangeLog updated
  • Attempt to fix completely #159
  • Improve ESX+vmfs support - needs testing
  • Attempt to fix #136 (without floppy mondorestore may hang due to a mount command blocked)
  • man page fixed as mindi images are now under /var/cache/mindi
  • Support Web page now includes all the latest supported distributions
  • mondorestore supports now the -p option so man page fixed.
  • Fix my email address in mindi man page
  • Fix a typo on the support Web page
  • Improve isolinux.bin detection on x86_64 system by looking also in /usr/lib64
  • Stricter POSIX conformance for all shell scripts (== replaced by = in compare)

(merge -r 1488:1499 $SVN_M/branches/2.2.4)

Location:
branches/stable/mindi
Files:
1 added
3 edited

Legend:

Unmodified
Added
Removed
  • branches/stable/mindi/ChangeLog

    r1447 r1500  
    33MINDI CHANGES
    44
    5 1.2.4 (2007-05-17)
     51.2.4 (2007-06-09)
     6- Improve VMWare ESX support (Bruno Cornec)
     7- Fix a x86_64 bug (Bruno Cornec)
     8- MINDI_TMP now used in analyze-my-lvm (Bruno Cornec)
     9- Fx bugs for optimised libs (Debian, Centos/RHEL5) (Brandon Poyner/Andree Leidenfrost/Bruno Cornec)
     10- Remove a hack for x86_64 in spec file due to a RH bug (Bruno Cornec)
     11- Remove all support for mindi.conf for 2.2.x branch (Bruno Cornec)
     12- Gentoo support improvements (kernel, kbd, deps, ...) (Francesco Talamona/Bruno Cornec)
     13- parted is required by mindi (Francesco Talamona/Bruno Cornec)
     14- Add support for i2o (Fix #165) (Bruno Cornec)
    615- Now supports USB keyboard/mouse at restore time better (Bruno Cornec)
    716- Support for HP xw9300 NIC (forcedeth) added (Bruno Cornec)
  • branches/stable/mindi/install.sh

    r1469 r1500  
    4242echo "mindi ${MINDIVER}-r${MINDIREV} will be installed under $local"
    4343
    44 if [ _"$MANDIR" == _"" ]; then
     44if [ _"$MANDIR" = _"" ]; then
    4545    MANDIR=$local/share/man/man8
    4646else
    4747    MANDIR=${HEAD}$MANDIR/man8
    4848fi
    49 if [ _"$DOCDIR" == _"" ]; then
     49if [ _"$DOCDIR" = _"" ]; then
    5050    DOCDIR=$local/share/doc/mindi-$MINDIVER
    5151else
    5252    DOCDIR=${HEAD}$DOCDIR/mindi-$MINDIVER
    5353fi
    54 if [ _"$LIBDIR" == _"" ]; then
     54if [ _"$LIBDIR" = _"" ]; then
    5555    ARCH=`/bin/arch`
    5656    echo $ARCH | grep -E '^i[0-9]86$' &> /dev/null && ARCH=i386 && locallib=$local/lib
  • branches/stable/mindi/mindi

    r1489 r1500  
    587587    ISOLINUX=/usr/lib/isolinux.bin
    588588    [ ! -e "$ISOLINUX" ] && ISOLINUX=/usr/lib/syslinux/isolinux.bin
     589    [ ! -e "$ISOLINUX" ] && ISOLINUX=/usr/lib64/syslinux/isolinux.bin
    589590    [ ! -e "$ISOLINUX" ] && ISOLINUX=/usr/share/syslinux/isolinux.bin
    590591    [ ! -e "$ISOLINUX" ] && ISOLINUX=/usr/share/lib/syslinux/isolinux.bin
     592    [ ! -e "$ISOLINUX" ] && ISOLINUX=/usr/share/lib64/syslinux/isolinux.bin
    591593    [ ! -e "$ISOLINUX" ] && ISOLINUX=`locate isolinux.bin | grep -x "/.*/isolinux.bin"`
    592594    [ ! -e "$ISOLINUX" ] && Die "Please install isolinux first. If your syslinux RPM doesn't include isolinux, you may download an isolinux RPM from Mondo's website - go to http://www.mondorescue.com and click on 'Download'"
     
    30463048lsmod >> $LOGFILE
    30473049MODULES="`cat /proc/modules | awk '{print $1}'`"
     3050if [ -e /usr/sbin/esxcfg-module ]; then
     3051    echo "VMWare ESX server detected - Enabling dedicated support" >> $LOGFILE
     3052    echo "-------------" >> $LOGFILE
     3053    echo "VMWare modules" >> $LOGFILE
     3054    echo "-------------" >> $LOGFILE
     3055    esxcfg-module -l >> $LOGFILE
     3056    MODULES="$MODULES `esxcfg-module -l | awk '{print $1}'`"
     3057fi
    30483058echo "-------------" >> $LOGFILE
    30493059echo "Liste of extra modules is:" >> $LOGFILE
Note: See TracChangeset for help on using the changeset viewer.