From 4f672085e2ef15e76f1f00ecdc57ad9ac045af11 Mon Sep 17 00:00:00 2001 From: Marcio Xavier Date: Thu, 10 Feb 2022 18:00:20 -0300 Subject: [PATCH] skipping EFI on arch ppc64le and s390x EFI does not work for Powerpc and s390x. It reports error when mounting /boot/efi eg:"(mount: /boot/efi: mount point does not exist)" --- tests/kola/reboot/test.sh | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/tests/kola/reboot/test.sh b/tests/kola/reboot/test.sh index 18cbb38a40..2f55be75eb 100755 --- a/tests/kola/reboot/test.sh +++ b/tests/kola/reboot/test.sh @@ -24,7 +24,10 @@ ok "boot mounted by UUID" [ -f /boot/.root_uuid ] # s390x does not have grub, skip this part -if [ "$(arch)" != "s390x" ]; then + +if [ "$(arch)" == "ppc64le" ] || [ "$(arch)" == "s390x" ]; then + echo "skipping EFI verification on arch $(arch)" +else # check for the UUID dropins [ -f /boot/grub2/bootuuid.cfg ] mount -o ro /dev/disk/by-label/EFI-SYSTEM /boot/efi