Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/archinstall
diff options
context:
space:
mode:
authoradvaithm <advaith.madhukar@gmail.com>2021-04-20 19:58:23 +0530
committeradvaithm <advaith.madhukar@gmail.com>2021-04-20 19:58:23 +0530
commitadeae68123314742dd76e2e231400c5cf6237c1e (patch)
treececd8f0195bbf18401a1e66db131a3984b31e024 /archinstall
parent264db25eefd09a99ecdfa5f095b49343fc143d82 (diff)
reworked how we remove efimanager and add grub
Diffstat (limited to 'archinstall')
-rw-r--r--archinstall/lib/installer.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/archinstall/lib/installer.py b/archinstall/lib/installer.py
index 2f90560f..4cf658c1 100644
--- a/archinstall/lib/installer.py
+++ b/archinstall/lib/installer.py
@@ -48,7 +48,8 @@ class Installer():
'base' : False,
'bootloader' : False
}
-
+ if hasUEFI() == False:
+ base_packages.replace(" efibootmgr","")
self.base_packages = base_packages.split(' ') if type(base_packages) is str else base_packages
self.post_base_install = []