Added debugging

This commit is contained in:
Anton Hvornum 2020-07-08 22:11:22 +00:00
parent dbbb52de3e
commit ef7ebfc394
2 changed files with 2 additions and 1 deletions

View File

@ -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')

View File

@ -5,7 +5,7 @@ with open("README.md", "r") as fh:
setuptools.setup(
name="archinstall",
version="2.0.3rc20",
version="2.0.3rc21",
author="Anton Hvornum",
author_email="anton@hvornum.se",
description="Arch Linux installer - guided, templates etc.",