diff options
author | John Estabrook <jestabro@vyos.io> | 2024-01-11 10:34:06 -0600 |
---|---|---|
committer | Mergify <37929162+mergify[bot]@users.noreply.github.com> | 2024-01-12 16:47:56 +0000 |
commit | b676106dd0926dc72cd959836270e1ffb9f48918 (patch) | |
tree | 3fce5c53b3511c3a97c6af8e305db46fa1bd4e0e /data/templates/grub/grub_common.j2 | |
parent | 387d4727d747306414cb26460e835b3d56e33da0 (diff) | |
download | vyos-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 'data/templates/grub/grub_common.j2')
-rw-r--r-- | data/templates/grub/grub_common.j2 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/data/templates/grub/grub_common.j2 b/data/templates/grub/grub_common.j2 index 278ffbf2c..29c2ab879 100644 --- a/data/templates/grub/grub_common.j2 +++ b/data/templates/grub/grub_common.j2 @@ -8,9 +8,9 @@ fi function setup_serial { # initialize the first serial port by default if [ "${console_type}" == "ttyS" ]; then - serial --unit=${console_num} + serial --unit=${console_num} --speed=${console_speed} else - serial --unit=0 + serial --unit=0 --speed=${console_speed} fi terminal_output --append serial console terminal_input --append serial console |