]> code.delx.au - refind/blobdiff - mkrlconf.sh
Added support for "-1" value to "screensaver" token. Modified
[refind] / mkrlconf.sh
index ed1759b3de6bbdb20f06c8f879a5e6ba70e2133c..ae9eff6b1f100c9dbdb1364f23ac7c06a1345891 100755 (executable)
@@ -10,7 +10,7 @@
 
 # Usage:
 #
-# ./mkrlconf.sh [--overwrite]
+# ./mkrlconf.sh [--force]
 #
 # Options:
 #
@@ -40,8 +40,10 @@ if [[ ! -f $RLConfFile || $1 == "--force" ]] ; then
       fi
    fi
    DefaultOptions="$GRUB_CMDLINE_LINUX $GRUB_CMDLINE_LINUX_DEFAULT"
-   echo "\"Boot with standard options\" \"ro root=$RootFS $DefaultOptions \"" > $RLConfFile
-   echo "\"Boot to single-user mode\"   \"ro root=$RootFS $DefaultOptions single\"" >> $RLConfFile
+   echo "\"Boot with standard options\"        \"ro root=$RootFS $DefaultOptions \"" > $RLConfFile
+   echo "\"Boot to single-user mode\"          \"ro root=$RootFS $DefaultOptions single\"" >> $RLConfFile
+   echo "\"Boot without EFI storage paranoia\" \"ro root=$RootFS $DefaultOptions efi_no_storage_paranoia\"" >> $RLConfFile
+   echo "\"Boot with minimal options\"         \"ro root=$RootFS\"" >> $RLConfFile
 else
    echo "Existing $RLConfFile found! Not overwriting!"
    echo "To force overwriting, pass the --force option."