From ef7ebfc394b717fa2f76154c357cfcf2e1dfdbcf Mon Sep 17 00:00:00 2001 From: Anton Hvornum Date: Wed, 8 Jul 2020 22:11:22 +0000 Subject: Added debugging --- archinstall/lib/installer.py | 1 + 1 file changed, 1 insertion(+) (limited to 'archinstall/lib') 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') -- cgit v1.2.3-54-g00ecf