Changeset 1722 in MondoRescue for branches/2.2.5/mindi


Ignore:
Timestamp:
Oct 28, 2007, 5:08:54 PM (16 years ago)
Author:
Bruno Cornec
Message:
  • udevd remove from deplist s handled in mindi directly
  • better default for mindi when using --usb
Location:
branches/2.2.5/mindi
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/2.2.5/mindi/deplist.txt

    r1716 r1722  
    3939loadkeys
    4040mount
    41 udevd
    4241devfsd burnBX burnK6 burnK7 burnMMX burnP5 burnP6 lucifer tiobench tiotest bonnie++ mprime ide-smart
    4342
  • branches/2.2.5/mindi/mindi

    r1721 r1722  
    17081708    if [ "$PROMPT_MAKE_USB_IMAGE" = "yes" ] && [ _"$MONDO_SHARE" = _"" ]; then
    17091709        echo "Shall I make a bootable USB image ?"
    1710         echo -en "WARNING: This will erase all content on $USBDEVICE (y/[n]) "
    1711         read i
    1712         [ "$i" != "y" ] && [ "$i" != "Y" ] && return 0
     1710        if [ "$USBDEVICE" != "" ]; then
     1711            echo -en "WARNING: This will erase all content on $USBDEVICE ([y]/n) "
     1712            read i
     1713            [ "$i" = "n" ] || [ "$i" = "N" ] && return 0
     1714        else
     1715            echo -en "WARNING: This will erase all content on $USBDEVICE (y/[n]) "
     1716            read i
     1717            [ "$i" != "y" ] && [ "$i" != "Y" ] && return 0
     1718        fi
    17131719    fi
    17141720    if [ _"$MINDI_TMP" = _"" ]; then
Note: See TracChangeset for help on using the changeset viewer.