Toolchain: Allow setting QEMU_{VERSION, MD5SUM} from command line

This can be used to download and build a specific QEMU version.
This commit is contained in:
Timon Kruiper 2022-08-17 14:17:28 +02:00 committed by Linus Groh
parent ca92e37ae0
commit 408e2f607a
Notes: sideshowbarker 2024-07-17 08:10:33 +09:00

View File

@ -11,8 +11,8 @@ PREFIX="$DIR/Local/qemu"
BUILD=$(realpath "$DIR/../Build")
SYSROOT="$BUILD/Root"
QEMU_VERSION="qemu-7.0.0"
QEMU_MD5SUM="bfb5b09a0d1f887c8c42a6d5f26971ab"
QEMU_VERSION=${QEMU_VERSION:="qemu-7.0.0"}
QEMU_MD5SUM=${QEMU_MD5SUM:="bfb5b09a0d1f887c8c42a6d5f26971ab"}
echo PREFIX is "$PREFIX"
echo SYSROOT is "$SYSROOT"