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:11:22 +0000
committerAnton Hvornum <anton.feeds+github@gmail.com>2020-07-08 22:11:22 +0000
commitef7ebfc394b717fa2f76154c357cfcf2e1dfdbcf (patch)
tree54b756c3a9a84c1f74bfbc8da9fe44d3462e2d72 /archinstall
parentdbbb52de3eabc62733b0d6b2ab2ff72ba7a219d3 (diff)
Added debugging
Diffstat (limited to 'archinstall')
-rw-r--r--archinstall/lib/installer.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/archinstall/lib/installer.py b/archinstall/lib/installer.py
index 0070e223..a397e1bc 100644
--- a/archinstall/lib/installer.py
+++ b/archinstall/lib/installer.py
@@ -88,6 +88,7 @@ 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')