1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 03:07:36 +00:00

Toolchain: Update BuildQemu.sh to qemu-7.1

QEMU 7.1 was released on August 30th.
Release Notes: https://wiki.qemu.org/ChangeLog/7.1

The patch 'Toolchain/Patches/qemu-cf-protection-none.patch' (or similar)
has been upstreamed so it can be safely removed.
This commit is contained in:
Kenneth Myhra 2022-10-26 22:22:19 +02:00 committed by Gunnar Beutner
parent 6d2ea087a5
commit e152a28737
2 changed files with 2 additions and 44 deletions

View file

@ -11,8 +11,8 @@ PREFIX="$DIR/Local/qemu"
BUILD=$(realpath "$DIR/../Build")
SYSROOT="$BUILD/Root"
QEMU_VERSION=${QEMU_VERSION:="qemu-7.0.0"}
QEMU_MD5SUM=${QEMU_MD5SUM:="bfb5b09a0d1f887c8c42a6d5f26971ab"}
QEMU_VERSION=${QEMU_VERSION:="qemu-7.1.0"}
QEMU_MD5SUM=${QEMU_MD5SUM:="3be5458a9171b4ec5220c65d5d52bdcf"}
echo PREFIX is "$PREFIX"
echo SYSROOT is "$SYSROOT"
@ -42,11 +42,6 @@ pushd "$DIR/Tarballs"
echo "Skipped extracting qemu"
fi
pushd "$QEMU_VERSION"
patch -p1 < "$DIR/Patches/qemu-cf-protection-none.patch" > /dev/null
md5sum "$DIR/Patches/qemu-cf-protection-none.patch" > .patch.applied
popd
popd
mkdir -p "$PREFIX"