Skip to content

Commit

Permalink
Use console as grub's terminal_output
Browse files Browse the repository at this point in the history
configs/{baseline,releng}/grub/grub.cfg:
Use `console` as grub's `terminal_output`, as with `gfxterm` only a blank screen is shown on some hardware.

Fixes #212
  • Loading branch information
dvzrv committed Feb 27, 2023
1 parent cedb3d1 commit 8535d69
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
3 changes: 1 addition & 2 deletions configs/baseline/grub/grub.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,9 @@ insmod udf
insmod all_video
insmod font
if loadfont "${prefix}/fonts/unicode.pf2" ; then
insmod gfxterm
set gfxmode="auto"
terminal_input console
terminal_output gfxterm
terminal_output console
fi

# Enable serial console
Expand Down
3 changes: 1 addition & 2 deletions configs/releng/grub/grub.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,9 @@ insmod udf
insmod all_video
insmod font
if loadfont "${prefix}/fonts/unicode.pf2" ; then
insmod gfxterm
set gfxmode="auto"
terminal_input console
terminal_output gfxterm
terminal_output console
fi

# Enable serial console
Expand Down

0 comments on commit 8535d69

Please sign in to comment.