mirror of
https://github.com/flatcar/scripts.git
synced 2025-08-16 01:16:59 +02:00
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:
commit
9aedbcc2c0
@ -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)
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user