diff options
author | Daniil Baturin <daniil@vyos.io> | 2024-01-16 22:54:20 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-16 22:54:20 +0000 |
commit | bf08f0f2538b5068ff1a41b51dac832b04a7d4be (patch) | |
tree | c8b8babd8e5d812a0f323dd40c1b1689c4530dde /python/vyos/system/grub_util.py | |
parent | 0249dc59b5adf095d9833cde42d8649ad299d717 (diff) | |
parent | 5ceaff2ef970cb9c567ac317bafbffca5b073f4a (diff) | |
download | vyos-1x-bf08f0f2538b5068ff1a41b51dac832b04a7d4be.tar.gz vyos-1x-bf08f0f2538b5068ff1a41b51dac832b04a7d4be.zip |
Merge pull request #2818 from jestabro/serial-console-config-mode
image-tools: T5923: update system_console.py for new GRUB file structure
Diffstat (limited to 'python/vyos/system/grub_util.py')
-rw-r--r-- | python/vyos/system/grub_util.py | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/python/vyos/system/grub_util.py b/python/vyos/system/grub_util.py new file mode 100644 index 000000000..9e79d41d4 --- /dev/null +++ b/python/vyos/system/grub_util.py @@ -0,0 +1,42 @@ +# Copyright 2024 VyOS maintainers and contributors <maintainers@vyos.io> +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public License +# along with this library. If not, see <http://www.gnu.org/licenses/>. + +from vyos.system import disk, grub, compat + +@compat.grub_cfg_update +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() + + grub.set_console_speed(console_speed, root_dir) + +def update_console_speed(console_speed: str, root_dir: str = '') -> None: + """Update console_speed if different from current value""" + + if not root_dir: + root_dir = disk.find_persistence() + + vars_file: str = f'{root_dir}/{grub.CFG_VYOS_VARS}' + vars_current: dict[str, str] = grub.vars_read(vars_file) + console_speed_current = vars_current.get('console_speed', None) + if console_speed != console_speed_current: + set_console_speed(console_speed, root_dir) |