Changeset 3053 in MondoRescue


Ignore:
Timestamp:
Oct 23, 2012, 1:12:45 PM (11 years ago)
Author:
Bruno Cornec
Message:
  • Add proposed enhancement in #648 (msross) to add more control through conf file to boot timeout and default mode
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/3.0/mindi/mindi

    r3049 r3053  
    2121# In case of problem with udev you can try to add udevdebug
    2222MINDI_ADDITIONAL_BOOT_PARAMS="devfs=nomount noresume selinux=0 barrier=off udevtimeout=10"
     23MINDI_DEFAULT_BOOT_OPTION="interactive"
     24# For a CD Recovery use 10000 instead rather. Beware till Hardcoded below. Planned to be changed on the perl version
     25# So this parameter only applies to non CD recovery.
     26MINDI_BOOT_TIMEOUT="300"
    2327
    2428MINDI_REV=PBREV
     
    17571761            echo -en "default${sep}iso\n"
    17581762        else
    1759             echo -en "default${sep}interactive\n"
     1763            echo -en "default${sep}${MINDI_DEFAULT_BOOT_OPTION}\n"
    17601764        fi
    17611765    else
     
    17651769    # Handle timeout
    17661770    if [ "$CDRECOVERY" != "yes" ] ; then
    1767         echo -en "timeout${sep}300\n"
     1771        echo -en "timeout${sep}${MINDI_BOOT_TIMEOUT}\n"
    17681772    else
    17691773        echo -en "timeout${sep}10000\n"
Note: See TracChangeset for help on using the changeset viewer.