summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorxengineering <mail2xengineering@protonmail.com>2020-01-12 17:49:44 +0100
committerxengineering <mail2xengineering@protonmail.com>2020-01-12 17:49:44 +0100
commitf3cbbe2b6da7257e5cfc6332b5ea1c7ddd82f5f9 (patch)
tree09dcc4a8a6315b05bd2352f2789fb140d68a4560
parent2f6a6e43c47a345ca72028177cea92e7307cebff (diff)
downloadarchinstall-f3cbbe2b6da7257e5cfc6332b5ea1c7ddd82f5f9.tar
archinstall-f3cbbe2b6da7257e5cfc6332b5ea1c7ddd82f5f9.tar.zst
archinstall-f3cbbe2b6da7257e5cfc6332b5ea1c7ddd82f5f9.zip
Added debug echos.
-rw-r--r--util/partition_disk.sh2
1 files changed, 2 insertions, 0 deletions
diff --git a/util/partition_disk.sh b/util/partition_disk.sh
index 6164d1b..a7a1087 100644
--- a/util/partition_disk.sh
+++ b/util/partition_disk.sh
@@ -23,6 +23,7 @@ boot_mode=$2 # "UEFI" or "BIOS"
if [ "$boot_mode" == "UEFI" ]; then
+ echo "Partitioning for UEFI mode."
wipefs -a $disk_path # make sure that fdisk does not ask for removing
# signatures which breaks the script
fdisk $disk_path << EOF
@@ -45,6 +46,7 @@ EOF
echo "Partitioned disk for UEFI/GPT- OK"
elif [ "$boot_mode" == "BIOS" ]; then
+ echo "Partitioning for BIOS mode."
wipefs -a $disk_path # make sure that fdisk does not ask for removing
# signatures which breaks the script
fdisk $disk_path << EOF