-
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add nomodeset entry, universal timeout for all bootloaders is 60
- Loading branch information
1 parent
6df8534
commit 0acdda3
Showing
2 changed files
with
18 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,22 @@ | ||
{{ LIMINE_PREPEND_COMMENT }} | ||
|
||
TIMEOUT=5 | ||
TIMEOUT=60 | ||
|
||
|
||
:{{ distro }} | ||
PROTOCOL=linux | ||
KERNEL_PATH=boot:///boot/{{ vmlinuz }} | ||
MODULE_PATH=boot:///boot/{{ initramfs }} | ||
CMDLINE=root=live:LABEL={{ volid }} rd.live.image enforcing=0 {{ cmd }} | ||
|
||
:{{ distro }} (Check Image) | ||
PROTOCOL=linux | ||
KERNEL_PATH=boot:///boot/{{ vmlinuz }} | ||
MODULE_PATH=boot:///boot/{{ initramfs }} | ||
CMDLINE=root=live:LABEL={{ volid }} rd.live.image rd.live.check enforcing=0 {{ cmd }} | ||
|
||
:{{ distro }} (nomodeset) | ||
PROTOCOL=linux | ||
KERNEL_PATH=boot:///boot/{{ vmlinuz }} | ||
MODULE_PATH=boot:///boot/{{ initramfs }} | ||
CMDLINE=root=live:LABEL={{ volid }} rd.live.image enforcing=0 nomodeset {{ cmd }} |