Changeset 2913 in MondoRescue for branches/3.0/mindi/mindi


Ignore:
Timestamp:
Dec 9, 2011, 8:26:23 PM (12 years ago)
Author:
Bruno Cornec
Message:
  • Fix #358 by using an external program (hpsa_obdr_mode) which can set the mode of the tape to CD-ROM or Sequential at will.

That program will have to be downloaded from http://cciss.sf.net

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/3.0/mindi/mindi

    r2907 r2913  
    26462646    if [ -d "/lib/firmware" ]; then
    26472647        cp -rp /lib/firmware $mountpoint/lib
     2648    fi
     2649
     2650    # Copy an additional ProLiant tool for OBDR support
     2651    if [ -f $MINDI_TMP/OBDR ]; then
     2652        if [ -x /usr/bin/hpsa_obdr_mode ]; then
     2653            mkdir -p $mountpoint/usr/bin
     2654            cp -a /usr/bin/hpsa_obdr_mode $mountpoint/usr/bin
     2655            LogIt "Copying /usr/bin/hpsa_obdr_mode to ramdisk for improved OBDR support"
     2656        else
     2657            LogAll "WARNING: You're using OBDR mode without having the /usr/bin/hpsa_obdr_mode tool"
     2658            LogAll "         This may lead to a tape not going back to sequential mode after OBDR boot"
     2659        fi
    26482660    fi
    26492661
Note: See TracChangeset for help on using the changeset viewer.