We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dbbb52d commit ef7ebfcCopy full SHA for ef7ebfc
2 files changed
archinstall/lib/installer.py
@@ -88,6 +88,7 @@ def minimal_installation(self):
88
def add_bootloader(self):
89
log(f'Adding bootloader to {self.boot_partition}')
90
o = b''.join(sys_command(f'/usr/bin/arch-chroot {self.mountpoint} bootctl --no-variables --path=/boot install'))
91
+ print('BOOT:', o)
92
with open(f'{self.mountpoint}/boot/loader/loader.conf', 'w') as loader:
93
loader.write('default arch\n')
94
loader.write('timeout 5\n')
setup.py
@@ -5,7 +5,7 @@
5
6
setuptools.setup(
7
name="archinstall",
8
- version="2.0.3rc20",
+ version="2.0.3rc21",
9
author="Anton Hvornum",
10
author_email="anton@hvornum.se",
11
description="Arch Linux installer - guided, templates etc.",
0 commit comments