From 8b27d2239b0a19ff3301fbb725ebf892f6ca2c82 Mon Sep 17 00:00:00 2001 From: Christian Breunig Date: Mon, 20 Apr 2026 21:03:25 +0200 Subject: image: T8375: honor already existing boot_settings VyOS flavors might come with boot_settings which already provided additional serial interface settings if required. Instead of using our own definitions, re-use what's already existing. scripts/image-build/build-vyos-image comes with an implicit default for boot_settings like console number and speed, thus we do not need to redefine the existing default - again. --- data/architectures/amd64.toml | 5 ++--- data/architectures/arm64.toml | 5 ++--- 2 files changed, 4 insertions(+), 6 deletions(-) (limited to 'data') diff --git a/data/architectures/amd64.toml b/data/architectures/amd64.toml index 4a864d7c..09a9de93 100644 --- a/data/architectures/amd64.toml +++ b/data/architectures/amd64.toml @@ -12,6 +12,5 @@ packages = [ "amd64-microcode" ] -console_type = "ttyS" -console_num = "0" -console_speed = "115200" +[boot_settings] + console_type = "ttyS" diff --git a/data/architectures/arm64.toml b/data/architectures/arm64.toml index 452e3e1e..1aa67021 100644 --- a/data/architectures/arm64.toml +++ b/data/architectures/arm64.toml @@ -6,6 +6,5 @@ packages = [ bootloaders = "grub-efi" squashfs_compression_type = "xz -b 256k -always-use-fragments -no-recovery" -console_type = "ttyAMA" -console_num = "0" -console_speed = "115200" +[boot_settings] + console_type = "ttyAMA" -- cgit v1.2.3