This commit is contained in:
Marc Beninca 2024-02-16 21:55:09 +01:00
parent e11b92e57b
commit 4961209719
3 changed files with 9 additions and 10 deletions

View file

@ -10,8 +10,8 @@ ENV_HEADER = f'''{ENV_COMMENT} GRUB Environment Block
'''
MODULES = {
'i386-pc': [
('biosdisk'),
('ntldr'),
('biosdisk',),
('ntldr',),
]
}
@ -19,7 +19,7 @@ MODULES = {
def make_image(image_format: str, image_path: str, modules: list[str],
memdisk_path: str, pubkey_path: str = None) -> None:
args = [
('grub-mkimage'),
('grub-mkimage',),
('--compress', COMPRESSION),
('--format', image_format),
('--output', image_path),