- Timestamp:
- Jun 6, 2016, 6:23:45 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/3.2/mindi/mindi
r3587 r3588 1937 1937 # Type of boot file (elilo or syslinux/isolinux) 1938 1938 type=$1 1939 if [ "$type" = "elilo" ] ; then1939 if [ "$type" = "elilo" ] || [ "$type" = "grub2" ]; then 1940 1940 sep="=" 1941 1941 sepdef="=" … … 1943 1943 sep=" " 1944 1944 sepdef=" " 1945 if [ "$type" = "grub" ]; then1946 sepdef="="1947 fi1948 1945 fi 1949 1946 … … 1993 1990 1994 1991 # Handle timeout 1995 if [ "$type" = "grub" ]; then 1996 sep='=' 1992 if [ "$type" = "grub2" ]; then 1993 seppref="set " 1994 else 1995 seppref="" 1997 1996 fi 1998 1997 if [ "$CDRECOVERY" = "yes" ] ; then 1999 echo -en " timeout${sep}10000\n"1998 echo -en "${seppref}timeout${sep}10000\n" 2000 1999 else 2001 echo -en " timeout${sep}${MINDI_BOOT_TIMEOUT}\n"2000 echo -en "${seppref}timeout${sep}${MINDI_BOOT_TIMEOUT}\n" 2002 2001 fi 2003 2002 echo -en "\n" … … 3367 3366 BOOT_TYPE=$4 3368 3367 bigdir=$MINDI_TMP/bigdir 3368 MINDI_ADDITIONAL_BOOT_PARAMS="selinux=0 barrier=off udevtimeout=10 systemd.debug-shell boot_method=vmedia" 3369 MINDI_BOOT_TIMEOUT=10 3369 3370 PrepareBootDir 3370 3371 PrepareAllTar
Note:
See TracChangeset
for help on using the changeset viewer.