diff options
| author | Christian Breunig <christian@breunig.cc> | 2026-02-28 19:35:54 +0100 |
|---|---|---|
| committer | Christian Breunig <christian@breunig.cc> | 2026-02-28 19:35:54 +0100 |
| commit | 6caf20d5471523362093b09b214f3020eaa804fd (patch) | |
| tree | 3f2901aa0aef116bea6ef2de1b803c639a653540 /data | |
| parent | 16733f4e39c042a7a6e870cb881785bb55d51723 (diff) | |
| download | vyos-build-6caf20d5471523362093b09b214f3020eaa804fd.tar.gz vyos-build-6caf20d5471523362093b09b214f3020eaa804fd.zip | |
T8120: define per architecture serial interface for Linux Kernel
x86_64 and arm64 both use a different serial interface during Linux Kernel
boot. Define either ttyS0 or ttyAMA0 per CPU architecture. This could be
further overwritten by individual flavors.
Diffstat (limited to 'data')
| -rw-r--r-- | data/architectures/amd64.toml | 2 | ||||
| -rw-r--r-- | data/architectures/arm64.toml | 1 |
2 files changed, 3 insertions, 0 deletions
diff --git a/data/architectures/amd64.toml b/data/architectures/amd64.toml index aeea8ffe..784d77ad 100644 --- a/data/architectures/amd64.toml +++ b/data/architectures/amd64.toml @@ -11,3 +11,5 @@ packages = [ "intel-microcode", "amd64-microcode" ] + +serial_interface = "ttyS0,115200"
\ No newline at end of file diff --git a/data/architectures/arm64.toml b/data/architectures/arm64.toml index 07de5225..415f54b8 100644 --- a/data/architectures/arm64.toml +++ b/data/architectures/arm64.toml @@ -4,3 +4,4 @@ packages = [ ] bootloaders = "grub-efi" squashfs_compression_type = "xz -b 256k -always-use-fragments -no-recovery" +serial_interface = "ttyAMA0,115200" |
