Skip to content

Commit

Permalink
platforms: add secondary serial console on VirtualBox/VMware
Browse files Browse the repository at this point in the history
The FCOS platform docs for VMware/VirtualBox include instructions on
connecting to the serial console to get a console log, and some users
make use of this functionality:

    coreos/fedora-coreos-tracker#567 (comment)

Re-enable secondary serial consoles on those platforms, so the serial
console gets as much information as possible without interfering with the
graphical console.
  • Loading branch information
bgilbert committed Oct 28, 2022
1 parent 2cbf072 commit 491ad73
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions platforms.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -143,3 +143,23 @@ x86_64:
kernel_arguments:
- console=tty0
- console=ttyS0,115200n8
virtualbox:
# Graphical console primary, serial console available for logging
# https://docs.fedoraproject.org/en-US/fedora-coreos/provisioning-virtualbox/#_troubleshooting_first_boot_problems
grub_commands:
- serial --speed=115200
- terminal_input serial console
- terminal_output serial console
kernel_arguments:
- console=ttyS0,115200n8
- console=tty0
vmware:
# Graphical console primary, serial console available for logging
# https://docs.fedoraproject.org/en-US/fedora-coreos/provisioning-vmware/#_troubleshooting_first_boot_problems
grub_commands:
- serial --speed=115200
- terminal_input serial console
- terminal_output serial console
kernel_arguments:
- console=ttyS0,115200n8
- console=tty0

0 comments on commit 491ad73

Please sign in to comment.