Changeset 966 in MondoRescue


Ignore:
Timestamp:
Nov 23, 2006, 5:38:40 PM (17 years ago)
Author:
Bruno Cornec
Message:

mindi defaults are now visible in the main messages

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/stable/mindi/mindi

    r965 r966  
    5252    # if this is set to 'no', then the image will be created automatically
    5353
    54 USE_OWN_KERNEL="no"
     54USE_OWN_KERNEL="yes"
    5555    # If set to "no", you will be prompted for whether or not
    5656    # you want to use your own kernel, or the supplied default.
     
    15371537    data_dev=$3
    15381538
    1539     echo -en "Would you like to create boot+data floppy disks now (y/n) ?"
     1539    echo -en "Would you like to create boot+data floppy disks now (y/[n]) ?"
    15401540    read i
    15411541    [ "$i" != "y" ] && [ "$i" != "Y" ] && return
     
    15631563    local i old_pwd
    15641564    if [ "$PROMPT_MAKE_CD_IMAGE" = "yes" ] && [ ! "`DidMondoCallMe`" ] ; then
    1565         echo -en "Shall I make a bootable CD image? (y/n) "
     1565        echo -en "Shall I make a bootable CD image? (y/[n]) "
    15661566        read i
    15671567        [ "$i" != "y" ] && [ "$i" != "Y" ] && return 0
     
    29252925if [ "$kernelpath" = "" ] ; then
    29262926    [ "`DidMondoCallMe`" ] && Die "Please use -k <path> to specify kernel."
    2927     if [ $USE_OWN_KERNEL != "yes" ]; then
    2928         echo -en "Do you want to use your own kernel to build the boot disk (y/n) ?"
    2929         read ch
    2930         if [ "$ch" != "n" ] && [ "$ch" != "N" ] ; then
    2931             USE_OWN_KERNEL="yes"
    2932         fi
     2927    echo -en "Do you want to use your own kernel to build the boot disk ([y]/n) ?"
     2928    read ch
     2929    if [ "$ch" != "n" ] && [ "$ch" != "N" ] ; then
     2930        USE_OWN_KERNEL="yes"
    29332931    fi
    29342932    if [ "$USE_OWN_KERNEL" = "yes" ]; then
     
    29442942fi
    29452943if [ ! "`DidMondoCallMe`" ] ; then
    2946     echo -en "Would you like to use LILO (instead of syslinux)\nfor your boot CD/floppies (y/n) ?"
     2944    echo -en "Would you like to use LILO (instead of syslinux)\nfor your boot CD/floppies (y/[n]) ?"
    29472945    read ch
    2948     if [ "$ch" != "n" ] && [ "$ch" != "N" ] ; then
     2946    if [ "$ch" != "y" ] && [ "$ch" != "Y" ] ; then
     2947        USE_LILO=no
     2948    else
    29492949        USE_LILO=yes
    2950     else
    2951         USE_LILO=no
    29522950    fi
    29532951fi
Note: See TracChangeset for help on using the changeset viewer.