Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoradvaithm <advaith.madhukar@gmail.com>2021-04-20 19:35:28 +0530
committeradvaithm <advaith.madhukar@gmail.com>2021-04-20 19:35:28 +0530
commitfc8960f2a9a9dd15185f8c4f7d9d98463663637c (patch)
treef54a828bb4ee2f0d1cf4018dbb5dc0fe1a2ec563
parent1ea02a7e692af2f3db16308b14be2ccdacdcb761 (diff)
we should only look for boot on uefi systems
-rw-r--r--examples/guided.py7
1 files changed, 3 insertions, 4 deletions
diff --git a/examples/guided.py b/examples/guided.py
index df9c9c37..5007fd33 100644
--- a/examples/guided.py
+++ b/examples/guided.py
@@ -268,8 +268,7 @@ def perform_installation_steps():
partition.format()
else:
archinstall.log(f"Did not format {partition} because .safe_to_format() returned False or .allow_formatting was False.", level=archinstall.LOG_LEVELS.Debug)
- if hasUEFI():
- fs.find_partition('/boot').format('vfat')# we don't have a boot partition in bios mode
+ fs.find_partition('/boot').format('vfat')# we don't have a boot partition in bios mode
if archinstall.arguments.get('!encryption-password', None):
# First encrypt and unlock, then format the desired partition inside the encrypted part.
@@ -281,8 +280,8 @@ def perform_installation_steps():
else:
fs.find_partition('/').format(fs.find_partition('/').filesystem)
fs.find_partition('/').mount('/mnt')
-
- fs.find_partition('/boot').mount('/mnt/boot')
+ if hasUEFI():
+ fs.find_partition('/boot').mount('/mnt/boot')
perform_installation('/mnt')