summaryrefslogtreecommitdiff
path: root/src/op_mode/image_installer.py
diff options
context:
space:
mode:
authorJohn Estabrook <jestabro@vyos.io>2024-01-11 10:34:06 -0600
committerMergify <37929162+mergify[bot]@users.noreply.github.com>2024-01-12 16:47:56 +0000
commitb676106dd0926dc72cd959836270e1ffb9f48918 (patch)
tree3fce5c53b3511c3a97c6af8e305db46fa1bd4e0e /src/op_mode/image_installer.py
parent387d4727d747306414cb26460e835b3d56e33da0 (diff)
downloadvyos-1x-b676106dd0926dc72cd959836270e1ffb9f48918.tar.gz
vyos-1x-b676106dd0926dc72cd959836270e1ffb9f48918.zip
image-tools: T5910: explicitly set transmission speed of serial console
GRUB defaults to 9600 in case of serial console; explicitly set to 115200. (cherry picked from commit 70122bef58eaa0084695f89c410992f8d7c1f9f6)
Diffstat (limited to 'src/op_mode/image_installer.py')
-rwxr-xr-xsrc/op_mode/image_installer.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/op_mode/image_installer.py b/src/op_mode/image_installer.py
index 5e2af2d97..b78029c24 100755
--- a/src/op_mode/image_installer.py
+++ b/src/op_mode/image_installer.py
@@ -91,6 +91,7 @@ DEFAULT_BOOT_VARS: dict[str, str] = {
'timeout': '5',
'console_type': 'tty',
'console_num': '0',
+ 'console_speed': '115200',
'bootmode': 'normal'
}