diff options
author | xengineering <mail2xengineering@protonmail.com> | 2020-01-12 17:49:44 +0100 |
---|---|---|
committer | xengineering <mail2xengineering@protonmail.com> | 2020-01-12 17:49:44 +0100 |
commit | f3cbbe2b6da7257e5cfc6332b5ea1c7ddd82f5f9 (patch) | |
tree | 09dcc4a8a6315b05bd2352f2789fb140d68a4560 | |
parent | 2f6a6e43c47a345ca72028177cea92e7307cebff (diff) | |
download | archinstall-f3cbbe2b6da7257e5cfc6332b5ea1c7ddd82f5f9.tar archinstall-f3cbbe2b6da7257e5cfc6332b5ea1c7ddd82f5f9.tar.zst archinstall-f3cbbe2b6da7257e5cfc6332b5ea1c7ddd82f5f9.zip |
Added debug echos.
-rw-r--r-- | util/partition_disk.sh | 2 |
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 |