We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f837387 commit ecaaddfCopy full SHA for ecaaddf
1 file changed
archinstall/lib/installer.py
@@ -1,5 +1,6 @@
1
import glob
2
import os
3
+import platform
4
import re
5
import shlex
6
import shutil
@@ -1186,7 +1187,7 @@ def _add_grub_bootloader(
1186
1187
boot_dir = boot_partition.mountpoint
1188
1189
add_options = [
- '--target=x86_64-efi',
1190
+ f'--target={platform.machine()}-elf',
1191
f'--efi-directory={efi_partition.mountpoint}',
1192
*boot_dir_arg,
1193
'--bootloader-id=GRUB',
0 commit comments