Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/archinstall/lib
diff options
context:
space:
mode:
authorAnton Hvornum <anton.feeds@gmail.com>2021-04-29 10:01:43 +0200
committerAnton Hvornum <anton.feeds@gmail.com>2021-04-29 10:01:43 +0200
commit1708f1850d5d620e7a44ab4da4a9c5c028f5008b (patch)
tree70e4c9267fc114a82b43074230f1417d15894c24 /archinstall/lib
parent9fd87a4b531ceaa037014d7ff710823698f49300 (diff)
Fixes #350 hopefully. This reverts an old hotfix to make systemd-boot work with dualboot variables. This **NEEDS** to be tested together with a Windows installation dual-boot setup, because this is where variable writing caused issues before.
Diffstat (limited to 'archinstall/lib')
-rw-r--r--archinstall/lib/installer.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/archinstall/lib/installer.py b/archinstall/lib/installer.py
index a5449662..236b69d8 100644
--- a/archinstall/lib/installer.py
+++ b/archinstall/lib/installer.py
@@ -377,7 +377,7 @@ class Installer():
# And in which case we should do some clean up.
# Install the boot loader
- sys_command(f'/usr/bin/arch-chroot {self.target} bootctl --no-variables --path=/boot install')
+ sys_command(f'/usr/bin/arch-chroot {self.target} bootctl --path=/boot install')
# Modify or create a loader.conf
if os.path.isfile(f'{self.target}/boot/loader/loader.conf'):