diff options
| author | 2025-02-20 07:55:35 -0500 | |
|---|---|---|
| committer | 2025-02-20 07:55:35 -0500 | |
| commit | 2cb33874d1b568ea0ba102529af6da13d002dbe2 (patch) | |
| tree | 0bdf26bf15836bafeb217d51b720736791fc0dce | |
| parent | 04baf2e19b144d9b9be1a6ec4272fa11a9c8e9ff (diff) | |
| download | kiwi-descriptions-2cb33874d1b568ea0ba102529af6da13d002dbe2.tar.gz kiwi-descriptions-2cb33874d1b568ea0ba102529af6da13d002dbe2.zip | |
teams/server: Use ext4 for /boot for the AArch64 host disk image
U-Boot does not support XFS and this causes significant issues
when trying to boot Fedora Server on single board computers.
Resolve this by using ext4 here, as all U-Boot variants generally
support this.
| -rw-r--r-- | teams/server.xml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/teams/server.xml b/teams/server.xml index de787f9..955d781 100644 --- a/teams/server.xml +++ b/teams/server.xml @@ -110,7 +110,7 @@ <type image="oem" filesystem="xfs" devicepersistency="by-uuid" force_mbr="true" - bootpartition="true" bootpartsize="1000" bootfilesystem="xfs" efipartsize="100" firmware="uefi" + bootpartition="true" bootpartsize="1000" bootfilesystem="ext4" efipartsize="100" firmware="uefi" rootfs_label="fedora" > <bootloader name="grub2" console="serial" timeout="3" timeout_style="menu"/> |