Skip to content

Commit

Permalink
fix: add 3 seconds grub boot timeout
Browse files Browse the repository at this point in the history
This allows to drop into GRUB menu and edit boot configuration.

Signed-off-by: Andrey Smirnov <smirnov.andrey@gmail.com>
  • Loading branch information
smira authored and talos-bot committed Feb 12, 2021
1 parent ffe34ec commit 6791036
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cmd/installer/cmd/iso.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ import (
)

var cfg = []byte(`set default=0
set timeout=0
set timeout=3
insmod all_video
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ const grubCfgTpl = `set default="{{ .Default }}"
{{ with .Fallback -}}
set fallback="{{ . }}"
{{- end }}
set timeout=0
set timeout=3
insmod all_video
Expand Down

0 comments on commit 6791036

Please sign in to comment.