Fix FS label of the ESP in Fedora distro definition

The QEMU assembler in Fedora distro definition for UEFI systems used
longer than allowed label for the VFAT filesystem of the EFI System
Partition. The maximum allowed label length is 11 characters.

This worked before with dosfstools, but in 2018, they added a label
validation [1]. This change got into the v4.2 release of dosfstools,
released in Jan 2021. And subsequently since F34, this new version of
dosfstools is present in Fedora repositories.

[1] ca54953476

Signed-off-by: Tomas Hozza <thozza@redhat.com>
This commit is contained in:
Tomas Hozza 2022-01-17 11:09:45 +01:00 committed by Tomáš Hozza
parent 08f668200a
commit 8b8c7bbbbe
2 changed files with 2 additions and 2 deletions

View file

@ -3924,7 +3924,7 @@
"filesystem": {
"type": "vfat",
"uuid": "46BB-8120",
"label": "EFI System Partition",
"label": "EFI-SYSTEM",
"mountpoint": "/boot/efi"
}
},