diff options
author | Christian Breunig <christian@breunig.cc> | 2024-01-12 18:29:43 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-12 18:29:43 +0100 |
commit | 72e30717dc2d4bdec118be227054c5b3db3ce8e1 (patch) | |
tree | 3fce5c53b3511c3a97c6af8e305db46fa1bd4e0e /data/templates/grub/grub_common.j2 | |
parent | 387d4727d747306414cb26460e835b3d56e33da0 (diff) | |
parent | b676106dd0926dc72cd959836270e1ffb9f48918 (diff) | |
download | vyos-1x-72e30717dc2d4bdec118be227054c5b3db3ce8e1.tar.gz vyos-1x-72e30717dc2d4bdec118be227054c5b3db3ce8e1.zip |
Merge pull request #2811 from vyos/mergify/bp/sagitta/pr-2806
image-tools: T5910: explicitly set transmission speed of serial console (backport #2806)
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 |