You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Use the flag to boot up flatcar linux image on a headless x86_64 system and it works fine.
Changelog entries added in the respective changelog/ directory (user-facing change, bug fix, security fix, update)
Inspected CI output for image differences: /boot and /usr size, packages, list files for any missing binaries, kernel modules, config files, kernel modules, etc.
I was actually looking to go the other way and remove -nographic from all cases, as having the display can help diagnose some early boot issues. There were some driver-related issues with arm64 though, so I didn't push it yet. You can always add -- -nographic yourself if that's what you want.
I manually provide either -nographic or -display curses on the flatcar_production_qemu.sh command line. One reason for the arm64/amd64 difference in -nographic: on arm64 the default console is the serial console, and on amd64 the default is tty0/tty1. So to get early kernel/initrd console output in -nographic mode on amd64 requires breaking in grub and appending console=ttyS0 to the kernel command line.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Add -nographic in
build_library/qemu_template.shRefer flatcar/Flatcar#1687
Testing done
Use the flag to boot up flatcar linux image on a headless x86_64 system and it works fine.
Changelog entries added in the respective
changelog/directory (user-facing change, bug fix, security fix, update)Inspected CI output for image differences:
/bootand/usrsize, packages, list files for any missing binaries, kernel modules, config files, kernel modules, etc.