mkinitcpio was no longer a part of linux or base, had to be installed seperately

This commit is contained in:
Anton Hvornum 2020-07-08 16:42:35 +00:00
parent a8b2e9d80b
commit d47fbf191c
1 changed files with 1 additions and 1 deletions

View File

@ -39,7 +39,7 @@ class Installer():
log(f'Could not sync mirrors: {sync_mirrors.exit_code}')
def minimal_installation(self):
return self.pacstrap('base base-devel linux linux-firmware btrfs-progs efibootmgr nano wpa_supplicant dialog'.split(' '), debug=True)
return self.pacstrap('base base-devel linux linux-firmware mkinitcpio btrfs-progs efibootmgr nano wpa_supplicant dialog'.split(' '), debug=True)
def add_bootloader(self, boot_partition):
log(f'Adding bootloader to {boot_partition}')