Merge pull request #2122 from flatcar-linux/kai/equinix-metal-m3.small

coreos-base/oem-packet: Use i386 serial settings for x86_64 to fix m3
This commit is contained in:
Kai Lüke 2022-09-01 13:36:10 +02:00 committed by GitHub
commit 9aedbcc2c0
2 changed files with 2 additions and 1 deletions

View File

@ -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)

View File

@ -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