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_vyos_version.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_vyos_version.j2')
-rw-r--r-- | data/templates/grub/grub_vyos_version.j2 | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/data/templates/grub/grub_vyos_version.j2 b/data/templates/grub/grub_vyos_version.j2 index 97fbe8473..62688e68b 100644 --- a/data/templates/grub/grub_vyos_version.j2 +++ b/data/templates/grub/grub_vyos_version.j2 @@ -6,16 +6,21 @@ {% endif %} menuentry "{{ version_name }}" --id {{ version_uuid }} { set boot_opts="{{ boot_opts_rendered }}" + if [ "${console_type}" == "ttyS" ]; then + set console_opts="console=${console_type}${console_num},${console_speed}" + else + set console_opts="console=${console_type}${console_num}" + fi # load rootfs to RAM if [ "${boot_toram}" == "yes" ]; then set boot_opts="${boot_opts} toram" fi if [ "${bootmode}" == "pw_reset" ]; then - set boot_opts="${boot_opts} console=${console_type}${console_num} init=/usr/libexec/vyos/system/standalone_root_pw_reset" + set boot_opts="${boot_opts} ${console_opts} init=/usr/libexec/vyos/system/standalone_root_pw_reset" elif [ "${bootmode}" == "recovery" ]; then - set boot_opts="${boot_opts} console=${console_type}${console_num} init=/usr/bin/busybox init" + set boot_opts="${boot_opts} ${console_opts} init=/usr/bin/busybox init" else - set boot_opts="${boot_opts} console=${console_type}${console_num}" + set boot_opts="${boot_opts} ${console_opts}" fi linux "/boot/{{ version_name }}/vmlinuz" ${boot_opts} initrd "/boot/{{ version_name }}/initrd.img" |