bubbles/python_modules/lists_modules/lists_binary.py

52 lines
1.7 KiB
Python

"""
* SPDX-FileCopyrightText: 2023-2025 PeppermintOS Team
* (peppermintosteam@proton.me)
* SPDX-License-Identifier: GPL-3.0-or-later
*
* Lets get all the binary structure settings
"""
# Binary packages shared by all
BINARY_LIST_SHARED = ['efibootmgr\n'
'grub-common\n'
'grub2-common\n'
'grub-efi\n'
'libefiboot1\n'
'libefivar1\n'
'mokutil\n'
'os-prober\n'
'shim-signed\n'
'shim-signed-common\n'
'shim-unsigned\n'
]
# Binary packages shared by 64bit
BINARY_LIST_64 = ['grub-efi-amd64\n'
'grub-efi-amd64-bin\n'
'grub-efi-amd64-signed\n'
'shim-helpers-amd64-signed\n'
'grub-efi-ia32-bin\n'
]
# Binary packages shared by 64bit
BINARY_LIST_64SRV = ['grub-efi-amd64\n'
'grub-efi-amd64-bin\n'
'grub-efi-amd64-signed\n'
'shim-helpers-amd64-signed\n'
'grub-efi-ia32-bin\n'
]
# Binary packages shared by ARM
BINARY_LIST_ARM = ['grub-efi-arm64\n'
'grub-efi-arm64-bin\n'
'grub-efi-arm64-signed\n'
'shim-helpers-arm64-signed\n'
]
# Binary packages shared by 32bit
BINARY_LIST_32 = ['grub-efi-ia32\n'
'grub-efi-ia32-bin\n'
'grub-efi-ia32-signed\n'
'grub-efi-ia32-bin\n'
'shim-helpers-i386-signed\n'
]