diff options
author | John Estabrook <jestabro@vyos.io> | 2024-01-12 10:10:58 -0600 |
---|---|---|
committer | Mergify <37929162+mergify[bot]@users.noreply.github.com> | 2024-01-17 05:34:02 +0000 |
commit | 2afd5e5575a42bee4483e093e9611fa3363c8adc (patch) | |
tree | 62c525749ed7beb7e89a59a265893edfcb055a11 /python/vyos/system/grub.py | |
parent | 6c39a9cb6df6bb56c02583f82d68edc8ef17241d (diff) | |
download | vyos-1x-2afd5e5575a42bee4483e093e9611fa3363c8adc.tar.gz vyos-1x-2afd5e5575a42bee4483e093e9611fa3363c8adc.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.
(cherry picked from commit 5ceaff2ef970cb9c567ac317bafbffca5b073f4a)
Diffstat (limited to 'python/vyos/system/grub.py')
-rw-r--r-- | python/vyos/system/grub.py | 17 |
1 files changed, 15 insertions, 2 deletions
diff --git a/python/vyos/system/grub.py b/python/vyos/system/grub.py index 61a9c7749..3f5f89103 100644 --- a/python/vyos/system/grub.py +++ b/python/vyos/system/grub.py @@ -346,5 +346,18 @@ def set_console_type(console_type: str, root_dir: str = '') -> None: vars_current['console_type'] = str(console_type) vars_write(vars_file, vars_current) -def set_raid(root_dir: str = '') -> None: - pass +def set_console_speed(console_speed: str, root_dir: str = '') -> None: + """Write default console speed to GRUB configuration + + Args: + console_speed (str): default console speed + root_dir (str, optional): an optional path to the root directory. + Defaults to empty. + """ + if not root_dir: + root_dir = disk.find_persistence() + + vars_file: str = f'{root_dir}/{CFG_VYOS_VARS}' + vars_current: dict[str, str] = vars_read(vars_file) + vars_current['console_speed'] = str(console_speed) + vars_write(vars_file, vars_current) |