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 /src/system/grub_update.py | |
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 'src/system/grub_update.py')
-rw-r--r-- | src/system/grub_update.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/system/grub_update.py b/src/system/grub_update.py index 3c851f0e0..4d5e0b6ae 100644 --- a/src/system/grub_update.py +++ b/src/system/grub_update.py @@ -68,7 +68,8 @@ if __name__ == '__main__': 'default': grub.gen_version_uuid(default_entry['version']), 'bootmode': default_entry['bootmode'], 'console_type': default_entry['console_type'], - 'console_num': default_entry['console_num'] + 'console_num': default_entry['console_num'], + 'console_speed': '115200' } vars.update(default_settings) |