Skip to content
This repository has been archived by the owner on May 30, 2023. It is now read-only.

Commit

Permalink
Merge pull request #2122 from flatcar-linux/kai/equinix-metal-m3.small
Browse files Browse the repository at this point in the history
coreos-base/oem-packet: Use i386 serial settings for x86_64 to fix m3
  • Loading branch information
pothos authored Sep 1, 2022
2 parents 66eee47 + 33b31f9 commit 7a5771f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions changelog/bugfixes/2022-08-30-equinix-metal-serial.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
- Equinix Metal: Fixed serial console settings for the `m3.small.x86` instance by expanding the GRUB check for `i386` to `x86_64` [coreos-overlay#2122](https://github.com/flatcar-linux/coreos-overlay/pull/2122)
2 changes: 1 addition & 1 deletion coreos-base/oem-packet/files/grub.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
set oem_id="packet"
set linux_append="flatcar.autologin"

if [ "$grub_cpu" = i386 ]; then
if [ "$grub_cpu" = i386 ] || [ "$grub_cpu" = x86_64 ]; then
set gfxpayload="1024x768x8,1024x768"
set linux_console="console=tty0 console=ttyS1,115200n8"
fi

0 comments on commit 7a5771f

Please sign in to comment.