Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/examples/guided.py
diff options
context:
space:
mode:
authorDylan Taylor <dylan@dylanmtaylor.com>2021-11-22 20:25:43 -0500
committerDylan Taylor <dylan@dylanmtaylor.com>2021-11-22 20:25:43 -0500
commit45ba4a3f1bd92be30dc4c97073bf48cd22d09169 (patch)
tree247f822c000a16b2ffc03dce64432114458c1585 /examples/guided.py
parent77e4bf6fa955e1caf0a913a494718930b28decf5 (diff)
Rewrite bootloader selection to allow efistub if advanced flag is set
Diffstat (limited to 'examples/guided.py')
-rw-r--r--examples/guided.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/guided.py b/examples/guided.py
index 3b2f87b8..e48ad89d 100644
--- a/examples/guided.py
+++ b/examples/guided.py
@@ -124,7 +124,7 @@ def ask_user_questions():
# Ask which boot-loader to use (will only ask if we're in BIOS (non-efi) mode)
if not archinstall.arguments.get("bootloader", None):
- archinstall.arguments["bootloader"] = archinstall.ask_for_bootloader()
+ archinstall.arguments["bootloader"] = archinstall.ask_for_bootloader(archinstall.arguments.get('advanced', False))
if not archinstall.arguments.get('swap', None):
archinstall.arguments['swap'] = archinstall.ask_for_swap()