51 lines
1.5 KiB
Python
51 lines
1.5 KiB
Python
"""
|
|
* SPDX-FileCopyrightText: 2023-2025 PeppermintOS Team
|
|
* (peppermintosteam@proton.me)
|
|
* SPDX-License-Identifier: GPL-3.0-or-later
|
|
*
|
|
* These lists are used to install grub packages
|
|
"""
|
|
|
|
# Grub things shared by all
|
|
GRUB_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'
|
|
'libglib2.0\n'
|
|
]
|
|
|
|
# Grub things shared by 64bit
|
|
GRUB_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'
|
|
]
|
|
|
|
# Grub things shared by ARM
|
|
GRUB_LIST_ARM64 = ['grub-efi-arm64\n'
|
|
'grub-efi-arm64-bin\n'
|
|
'grub-efi-arm64-signed\n'
|
|
'shim-helpers-arm64-signed\n'
|
|
]
|
|
|
|
# Grub things shared by 32bit
|
|
GRUB_LIST_32 = ['efibootmgr\n'
|
|
'grub-common\n'
|
|
'grub2-common\n'
|
|
'grub-efi\n'
|
|
'grub-efi-ia32\n'
|
|
'grub-efi-ia32-bin\n'
|
|
'grub-efi-ia32-signed\n'
|
|
'grub-efi-ia32-bin\n'
|
|
'os-prober\n'
|
|
'shim-helpers-i386-signed\n'
|
|
]
|