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

Toolchain+Ports: Update QEMU to 8.1.0

This version contains my patch that adds support for the proprietary
VideoCore mailbox message for reading the kernel command line, so
patches aren't needed anymore.
This commit is contained in:
Daniel Bertalan 2023-09-11 23:18:09 +02:00 committed by Andrew Kaster
parent a65d6e5e50
commit d87fbcccb7
5 changed files with 4 additions and 120 deletions

View file

@ -37,19 +37,12 @@ pushd "$DIR/Tarballs"
exit 1
fi
# If the source directory exists, re-extract it again in case the patches have changed.
if [ -d "qemu-$QEMU_VERSION" ]; then
rm -rf "qemu-$QEMU_VERSION"
fi
echo "Extracting qemu..."
tar -xf "${QEMU_ARCHIVE}"
pushd "qemu-$QEMU_VERSION"
for patch in "${DIR}"/Patches/qemu/*.patch; do
patch -p1 < "${patch}" > /dev/null
done
popd
popd
mkdir -p "$PREFIX"