Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/archinstall
diff options
context:
space:
mode:
authorAnton Hvornum <anton.feeds+github@gmail.com>2020-07-08 22:51:21 +0000
committerAnton Hvornum <anton.feeds+github@gmail.com>2020-07-08 22:51:21 +0000
commit13e9953630bfc15df58647eeb11df93511b26faf (patch)
treec3296f713a1c0755144e6a8c52d7cfa398e8ce19 /archinstall
parentb0ca5c9107367eb214d77b69486bf2edc65ac1c8 (diff)
removed some non-essnetial packages. re-structured the guided installer to ask for stuff first, then fire away. Tested encrypted/non-encrypted and both works.
Diffstat (limited to 'archinstall')
-rw-r--r--archinstall/lib/installer.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/archinstall/lib/installer.py b/archinstall/lib/installer.py
index 58bd5123..d53cc961 100644
--- a/archinstall/lib/installer.py
+++ b/archinstall/lib/installer.py
@@ -60,7 +60,7 @@ class Installer():
sys_command(f'/usr/bin/arch-chroot {self.mountpoint} locale-gen')
def minimal_installation(self):
- self.pacstrap('base base-devel linux linux-firmware btrfs-progs efibootmgr nano wpa_supplicant dialog'.split(' '))
+ self.pacstrap('base base-devel linux linux-firmware btrfs-progs efibootmgr nano'.split(' '))
self.genfstab()
with open(f'{self.mountpoint}/etc/fstab', 'a') as fstab:
@@ -90,7 +90,6 @@ class Installer():
def add_bootloader(self):
log(f'Adding bootloader to {self.boot_partition}')
o = b''.join(sys_command(f'/usr/bin/arch-chroot {self.mountpoint} bootctl --no-variables --path=/boot install'))
- print('BOOT:', o)
with open(f'{self.mountpoint}/boot/loader/loader.conf', 'w') as loader:
loader.write('default arch\n')
loader.write('timeout 5\n')