Skip to content

Commit ba68704

Browse files
committed
common-versions: use qemu fork
1 parent e7d1838 commit ba68704

File tree

1 file changed

+8
-3
lines changed

1 file changed

+8
-3
lines changed

scripts/common-versions-source.sh

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -150,9 +150,14 @@ function build_versions()
150150
# Stick to upstream as long as possible.
151151
# https://github.com/qemu/qemu/tags
152152

153-
QEMU_GIT_URL="https://git.qemu.org/git/qemu.git"
154-
QEMU_GIT_BRANCH="master"
155-
QEMU_GIT_COMMIT="v${QEMU_VERSION}"
153+
QEMU_GIT_URL="https://github.com/xpack-dev-tools/qemu.git"
154+
if [ "${IS_DEVELOP}" == "y" ]
155+
then
156+
QEMU_GIT_BRANCH="xpack-develop"
157+
else
158+
QEMU_GIT_BRANCH="xpack"
159+
fi
160+
QEMU_GIT_COMMIT="v${QEMU_VERSION}-xpack"
156161

157162
build_qemu "${QEMU_VERSION}" "riscv"
158163
)

0 commit comments

Comments
 (0)