Merge pull request #1628 from flatcar-linux/jepio/aws-arm64-fix-console

coreos-base/oem-ec2-compat: set correct console on arm64
This commit is contained in:
Jeremi Piotrowski 2022-02-11 15:44:52 +01:00 committed by GitHub
commit bdcac570b1
3 changed files with 4 additions and 0 deletions

View File

@ -0,0 +1 @@
- AWS: specify correct console (ttyS0) on kernel command line for ARM64 instances ([PR#1628](https://github.com/flatcar-linux/coreos-overlay/pull/1628))

View File

@ -12,3 +12,6 @@ if [ "$grub_platform" = pc ]; then
terminal_input serial_com0
terminal_output serial_com0
fi
if [ "$grub_cpu" = arm64 ]; then
set linux_console="console=tty1 console=ttyS0,115200n8 earlycon"
fi