From 79a95b1f60bc3ca2de7cbb8aeab862d251caa960 Mon Sep 17 00:00:00 2001 From: Mizux Seiha Date: Tue, 10 Dec 2024 22:19:59 +0100 Subject: [PATCH] script: bump qemu to 9.0.4 note: qemu 9.1.2 currently segfault with aarch64be ref: https://gitlab.com/qemu-project/qemu/-/issues/2580 --- scripts/run_integration.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/scripts/run_integration.sh b/scripts/run_integration.sh index cd4003d..491fe54 100755 --- a/scripts/run_integration.sh +++ b/scripts/run_integration.sh @@ -33,7 +33,7 @@ function install_qemu() { >&2 echo 'QEMU is disabled !' return 0 fi - local -r QEMU_VERSION=${QEMU_VERSION:=9.0.2} + local -r QEMU_VERSION=${QEMU_VERSION:=9.0.4} local -r QEMU_TARGET=${QEMU_ARCH}-linux-user if echo "${QEMU_VERSION} ${QEMU_TARGET}" | cmp --silent "${QEMU_INSTALL}/.build" -; then @@ -49,8 +49,8 @@ function install_qemu() { # Checking for a tarball before downloading makes testing easier :-) local -r QEMU_URL="https://download.qemu.org/qemu-${QEMU_VERSION}.tar.xz" local -r QEMU_DIR="qemu-${QEMU_VERSION}" - unpack ${QEMU_URL} ${QEMU_DIR} - cd ${QEMU_DIR} || exit 2 + unpack "${QEMU_URL}" "${QEMU_DIR}" + cd "${QEMU_DIR}" || exit 2 # Qemu (meson based build) depends on: pkgconf, libglib2.0, python3, ninja ./configure \