commit:     73f0242cd4c4744393f9281464f56b2c14eeb089
Author:     Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
AuthorDate: Sat Oct 12 22:18:03 2024 +0000
Commit:     Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
CommitDate: Sat Oct 12 22:18:03 2024 +0000
URL:        https://gitweb.gentoo.org/proj/catalyst.git/commit/?id=73f0242c

Add labels to filesystems. How quaint.

Signed-off-by: Andreas K. Hüttel <dilfridge <AT> gentoo.org>

 targets/support/create-qcow2.sh | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/targets/support/create-qcow2.sh b/targets/support/create-qcow2.sh
index d90ec541..f7c1a08a 100755
--- a/targets/support/create-qcow2.sh
+++ b/targets/support/create-qcow2.sh
@@ -122,10 +122,10 @@ echo "Printing the partition table"
 parted -s ${mydevice} -- print || qcow2die "Printing the partition table 
failed"
 
 echo "Making a vfat filesystem in p1"
-mkfs.fat -v -F 32 ${mypartefi} || qcow2die "Formatting EFI partition failed"
+mkfs.fat -v -F 32 -n gentooefi ${mypartefi} || qcow2die "Formatting EFI 
partition failed"
 
 echo "Making an xfs filesystem in p2"
-mkfs.xfs ${mypartroot} || qcow2die "Formatting root partition failed"
+mkfs.xfs -L gentooroot ${mypartroot} || qcow2die "Formatting root partition 
failed"
 
 echo "Printing blkid output"
 blkid ${mydevice}* || qcow2die "blkid failed"

Reply via email to