summaryrefslogtreecommitdiff
path: root/data
diff options
context:
space:
mode:
authorChristian Breunig <christian@breunig.cc>2026-04-20 21:03:25 +0200
committerChristian Breunig <christian@breunig.cc>2026-04-20 21:03:25 +0200
commit8b27d2239b0a19ff3301fbb725ebf892f6ca2c82 (patch)
treef1a7abd7ec660519ce10726159968ec168d7dc57 /data
parentfd35831c4c05319e37e2d0d76fb8a414944f83dc (diff)
downloadvyos-build-8b27d2239b0a19ff3301fbb725ebf892f6ca2c82.tar.gz
vyos-build-8b27d2239b0a19ff3301fbb725ebf892f6ca2c82.zip
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.
Diffstat (limited to 'data')
-rw-r--r--data/architectures/amd64.toml5
-rw-r--r--data/architectures/arm64.toml5
2 files changed, 4 insertions, 6 deletions
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"