Added debugging
This commit is contained in:
parent
dbbb52de3e
commit
ef7ebfc394
|
|
@ -88,6 +88,7 @@ class Installer():
|
||||||
def add_bootloader(self):
|
def add_bootloader(self):
|
||||||
log(f'Adding bootloader to {self.boot_partition}')
|
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'))
|
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:
|
with open(f'{self.mountpoint}/boot/loader/loader.conf', 'w') as loader:
|
||||||
loader.write('default arch\n')
|
loader.write('default arch\n')
|
||||||
loader.write('timeout 5\n')
|
loader.write('timeout 5\n')
|
||||||
|
|
|
||||||
2
setup.py
2
setup.py
|
|
@ -5,7 +5,7 @@ with open("README.md", "r") as fh:
|
||||||
|
|
||||||
setuptools.setup(
|
setuptools.setup(
|
||||||
name="archinstall",
|
name="archinstall",
|
||||||
version="2.0.3rc20",
|
version="2.0.3rc21",
|
||||||
author="Anton Hvornum",
|
author="Anton Hvornum",
|
||||||
author_email="anton@hvornum.se",
|
author_email="anton@hvornum.se",
|
||||||
description="Arch Linux installer - guided, templates etc.",
|
description="Arch Linux installer - guided, templates etc.",
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue