summaryrefslogtreecommitdiff
path: root/data/templates/grub/grub_common.j2
diff options
context:
space:
mode:
authorJohn Estabrook <jestabro@vyos.io>2024-01-12 10:10:58 -0600
committerJohn Estabrook <jestabro@vyos.io>2024-01-12 22:45:27 -0600
commit5ceaff2ef970cb9c567ac317bafbffca5b073f4a (patch)
treec3a5bb5b9e7b49a50b22ca07780fd7424e42971c /data/templates/grub/grub_common.j2
parentfef091bd6dc5c3cdfae47e9adb86f610a75a8a4d (diff)
downloadvyos-1x-5ceaff2ef970cb9c567ac317bafbffca5b073f4a.tar.gz
vyos-1x-5ceaff2ef970cb9c567ac317bafbffca5b073f4a.zip
image-tools: T5923: update system_console.py for new GRUB file structure
Add util function to set serial console speed in accordance with revised GRUB file structure; in keeping with the intentions of the config_mode script, adjust the GRUB var 'console_speed' to only modify ttyS0.
Diffstat (limited to 'data/templates/grub/grub_common.j2')
-rw-r--r--data/templates/grub/grub_common.j26
1 files changed, 5 insertions, 1 deletions
diff --git a/data/templates/grub/grub_common.j2 b/data/templates/grub/grub_common.j2
index 29c2ab879..5e9b95cc0 100644
--- a/data/templates/grub/grub_common.j2
+++ b/data/templates/grub/grub_common.j2
@@ -8,7 +8,11 @@ fi
function setup_serial {
# initialize the first serial port by default
if [ "${console_type}" == "ttyS" ]; then
- serial --unit=${console_num} --speed=${console_speed}
+ if [ "${console_num}" == "0" ]; then
+ serial --unit=0 --speed=${console_speed}
+ else
+ serial --unit=${console_num} --speed=115200
+ fi
else
serial --unit=0 --speed=${console_speed}
fi