diff options
author | xengineering <mail2xengineering@protonmail.com> | 2019-12-17 13:47:27 +0100 |
---|---|---|
committer | xengineering <mail2xengineering@protonmail.com> | 2019-12-17 13:47:27 +0100 |
commit | f5d7884eb22ab15a5a5c7a70cfcecec8cce360b8 (patch) | |
tree | 5d33368fd22d47f459b09ae4abc525e1b72a1d88 /util | |
parent | 00f3ae82ac392fe0ec85d6fc8734a14df80072f8 (diff) | |
download | archinstall-f5d7884eb22ab15a5a5c7a70cfcecec8cce360b8.tar archinstall-f5d7884eb22ab15a5a5c7a70cfcecec8cce360b8.tar.zst archinstall-f5d7884eb22ab15a5a5c7a70cfcecec8cce360b8.zip |
Renamed boot_partition to efi_partition and root_partition to main_partition.
Diffstat (limited to 'util')
-rw-r--r-- | util/create_filesystems.sh | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/util/create_filesystems.sh b/util/create_filesystems.sh index 8f2341f..f3b06f1 100644 --- a/util/create_filesystems.sh +++ b/util/create_filesystems.sh @@ -18,13 +18,13 @@ # along with this program. If not, see <https://www.gnu.org/licenses/>. -boot_partition_path=$1 # e.g. /dev/sda1 -root_partition_path=$2 # e.g. /dev/sda2 +efi_partition_path=$1 # e.g. /dev/sda1 +main_partition_path=$2 # e.g. /dev/sda2 -mkfs.fat -F32 $boot_partition_path -fatlabel $boot_partition_path "BOOT" -mkfs.ext4 $root_partition_path -e2label $root_partition_path "ROOT" +mkfs.fat -F32 $efi_partition_path +fatlabel $efi_partition_path "EFI" +mkfs.ext4 $main_partition_path +e2label $main_partition_path "ROOT" echo "Created filesystems - OK" |