From 9a1b42f93b88324d05eb0615a5339a5041bcfceb Mon Sep 17 00:00:00 2001 From: Nestor Acuna Blanco Date: Mon, 4 Nov 2024 11:17:06 +0100 Subject: [PATCH] fix: disable efi bootloader in fedora for s390x Attempting to run it in this architecture makes the image unbootable. Signed-off-by: Nestor Acuna Blanco --- templates/fedora.tpl.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/templates/fedora.tpl.yaml b/templates/fedora.tpl.yaml index 990d55cd..ca62ca67 100644 --- a/templates/fedora.tpl.yaml +++ b/templates/fedora.tpl.yaml @@ -100,9 +100,11 @@ objects: features: smm: enabled: true +{% if ansible_architecture != 's390x' %} firmware: bootloader: efi: {} +{% endif %} {% if item.iothreads %} ioThreadsPolicy: shared {% endif %}