Skip to content

Commit bb0ea5e

Browse files
committed
versioning.sh: add 7.2.5
1 parent 5e4fb2a commit bb0ea5e

File tree

1 file changed

+16
-6
lines changed

1 file changed

+16
-6
lines changed

scripts/versioning.sh

Lines changed: 16 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ function application_build_versioned_components()
126126
# required by libssh
127127
# https://www.openssl.org/source/
128128
openssl_build "1.1.1v" # "1.1.1s"
129-
129+
130130
# https://www.libssh.org/files/
131131
libssh_build "0.10.5" # "0.10.4"
132132

@@ -194,12 +194,17 @@ function application_build_versioned_components()
194194

195195
qemu_build "${XBB_QEMU_VERSION}" "riscv"
196196

197-
elif [[ "${XBB_RELEASE_VERSION}" =~ 7[.]2[.]0-.* ]]
197+
elif [[ "${XBB_RELEASE_VERSION}" =~ 7[.]2[.][05]-.* ]]
198198
then
199199
# -------------------------------------------------------------------------
200200
# Build the native dependencies.
201201

202-
autotools_build
202+
# No longer needed with recent libxml2.
203+
if false
204+
then
205+
# autoreconf required by libxml2.
206+
autotools_build
207+
fi
203208

204209
# -----------------------------------------------------------------------
205210
# Revert to requested target.
@@ -347,11 +352,16 @@ function application_build_versioned_components()
347352
# https://github.com/qemu/qemu/tags
348353

349354
XBB_QEMU_GIT_URL="https://github.com/xpack-dev-tools/qemu.git"
350-
if [ "${XBB_IS_DEVELOP}" == "y" ]
355+
if [[ "${XBB_RELEASE_VERSION}" =~ 7[.]2[.]5-.* ]]
351356
then
352-
XBB_QEMU_GIT_BRANCH="xpack-develop"
357+
XBB_QEMU_GIT_BRANCH="v7.2.5-xpack"
353358
else
354-
XBB_QEMU_GIT_BRANCH="xpack"
359+
if [ "${XBB_IS_DEVELOP}" == "y" ]
360+
then
361+
XBB_QEMU_GIT_BRANCH="xpack-develop"
362+
else
363+
XBB_QEMU_GIT_BRANCH="xpack"
364+
fi
355365
fi
356366
XBB_QEMU_GIT_COMMIT="v${XBB_QEMU_VERSION}-xpack"
357367

0 commit comments

Comments
 (0)