Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/archinstall
diff options
context:
space:
mode:
authorDylan M. Taylor <dylan@dylanmtaylor.com>2021-04-29 20:03:25 -0400
committerGitHub <noreply@github.com>2021-04-29 20:03:25 -0400
commite488ad8ec40ab30ae6b5df83b5df64c123c701cc (patch)
tree42b6732a037a89a3825caeb603050ca267d83660 /archinstall
parent4ce97aaa8c395f24c96212471b32fb00987c0386 (diff)
Change how efibootmgr is installed
Make changes suggested by Torxed
Diffstat (limited to 'archinstall')
-rw-r--r--archinstall/lib/installer.py7
1 files changed, 3 insertions, 4 deletions
diff --git a/archinstall/lib/installer.py b/archinstall/lib/installer.py
index 1443a0f9..61ac737c 100644
--- a/archinstall/lib/installer.py
+++ b/archinstall/lib/installer.py
@@ -51,10 +51,6 @@ class Installer():
self.base_packages = base_packages.split(' ') if type(base_packages) is str else base_packages
for kernel in kernels:
self.base_packages.append(kernel)
- if hasUEFI():
- self.base_packages.append("efibootmgr")
- else:
- self.base_packages.append("grub")
self.post_base_install = []
@@ -370,6 +366,7 @@ class Installer():
self.log(f'Adding bootloader {bootloader} to {boot_partition if boot_partition else root_partition}', level=logging.INFO)
if bootloader == 'systemd-bootctl':
+ self.pacstrap('efibootmgr')
if not hasUEFI():
raise HardwareIncompatibilityError
@@ -433,8 +430,10 @@ class Installer():
raise RequirementError(f"Could not identify the UUID of {self.partition}, there for {self.target}/boot/loader/entries/arch.conf will be broken until fixed.")
elif bootloader == "grub-install":
+ self.pacstrap('grub')
if hasUEFI():
+ self.pacstrap('efibootmgr')`
o = b''.join(sys_command(f'/usr/bin/arch-chroot {self.target} grub-install --target=x86_64-efi --efi-directory=/boot --bootloader-id=GRUB'))
sys_command('/usr/bin/arch-chroot /mnt grub-mkconfig -o /boot/grub/grub.cfg')
return True