From f5d7884eb22ab15a5a5c7a70cfcecec8cce360b8 Mon Sep 17 00:00:00 2001 From: xengineering Date: Tue, 17 Dec 2019 13:47:27 +0100 Subject: Renamed boot_partition to efi_partition and root_partition to main_partition. --- util/create_filesystems.sh | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'util/create_filesystems.sh') 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 . -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" -- cgit v1.2.3-70-g09d2