diff options
author | Christian Breunig <christian@breunig.cc> | 2024-03-28 07:47:39 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-28 07:47:39 +0100 |
commit | 63b9889f2070ae09774c71ff1449a5c1f7b99881 (patch) | |
tree | 79fd1e82d0e1dd8610e034e7c5982fab835db668 /python/vyos | |
parent | 20f273f613bb45218e42600d9f1a08820ae78cf4 (diff) | |
parent | 1cb05f47ec7e2af265fa6795653f27481dacc37f (diff) | |
download | vyos-1x-63b9889f2070ae09774c71ff1449a5c1f7b99881.tar.gz vyos-1x-63b9889f2070ae09774c71ff1449a5c1f7b99881.zip |
Merge pull request #3192 from jestabro/compat-update-serial-console
image-tools: T6168: compat mode update should preserve console type
Diffstat (limited to 'python/vyos')
-rw-r--r-- | python/vyos/system/compat.py | 22 |
1 files changed, 17 insertions, 5 deletions
diff --git a/python/vyos/system/compat.py b/python/vyos/system/compat.py index 37b834ad6..1b487c1d2 100644 --- a/python/vyos/system/compat.py +++ b/python/vyos/system/compat.py @@ -198,11 +198,11 @@ def update_cfg_ver(root_dir:str = '') -> int: return cfg_version -def get_default(menu_entries: list, root_dir: str = '') -> Union[int, None]: +def get_default(data: dict, root_dir: str = '') -> Union[int, None]: """Translate default version to menuentry index Args: - menu_entries (list): list of dicts of installed version boot data + data (dict): boot data root_dir (str): an optional path to the root directory Returns: @@ -213,10 +213,22 @@ def get_default(menu_entries: list, root_dir: str = '') -> Union[int, None]: grub_cfg_main = f'{root_dir}/{grub.GRUB_CFG_MAIN}' + menu_entries = data.get('versions', []) + console_type = data.get('console_type', 'tty') + console_num = data.get('console_num', '0') image_name = image.get_default_image() - sublist = list(filter(lambda x: x.get('version') == image_name, - menu_entries)) + sublist = list(filter(lambda x: (x.get('version') == image_name and + x.get('console_type') == console_type and + x.get('console_num') == console_num and + x.get('bootmode') == 'normal'), + menu_entries)) + # legacy images added with legacy tools omitted 'ttyUSB'; if entry not + # available, default to initial entry of version + if not sublist: + sublist = list(filter(lambda x: x.get('version') == image_name, + menu_entries)) + if sublist: return menu_entries.index(sublist[0]) @@ -291,7 +303,7 @@ def grub_cfg_fields(root_dir: str = '') -> dict: menu_entries = update_version_list(root_dir) fields['versions'] = menu_entries - default = get_default(menu_entries, root_dir) + default = get_default(fields, root_dir) if default is not None: fields['default'] = default |