From 1b0e033963f3168b8cc3e5f24ac48deafd27a24c Mon Sep 17 00:00:00 2001 From: Tamas K Lengyel Date: Thu, 21 Nov 2024 18:45:52 -0500 Subject: [PATCH] Update configure-xen.sh Disable OVMF build due to github actions breakage: fatal: could not read Username for 'https://github.com': No such device or address --- package/configure-xen.sh | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/package/configure-xen.sh b/package/configure-xen.sh index 596236f11..89bd2d200 100755 --- a/package/configure-xen.sh +++ b/package/configure-xen.sh @@ -1,16 +1,19 @@ #!/bin/bash +## Disabling OVMF build due to github actions breakage: +## fatal: could not read Username for 'https://github.com': No such device or address + # Building OVMF is broken with gcc-11 (default on jammy) # Unfortunately we can't just set CC in the environment because the edk2 build system is insane # gcc-9 is not available on bookworm so there we build with no ovmf at all OVMF="" -GCC_VERSION=$(gcc --version | head -n1 | awk '{ print $4 }' | awk -F'.' '{ print $1 }') -if [ ${GCC_VERSION} -gt 9 ] && [ -f /usr/bin/gcc-9 ]; then - rm /usr/bin/gcc - ln -s /usr/bin/gcc-9 /usr/bin/gcc - OVMF="--enable-ovmf" -fi +#GCC_VERSION=$(gcc --version | head -n1 | awk '{ print $4 }' | awk -F'.' '{ print $1 }') +#if [ ${GCC_VERSION} -gt 9 ] && [ -f /usr/bin/gcc-9 ]; then +# rm /usr/bin/gcc +# ln -s /usr/bin/gcc-9 /usr/bin/gcc +# OVMF="--enable-ovmf" +#fi ./configure --prefix=/usr --enable-githttp \ --disable-pvshim --disable-werror \