]> git.proxmox.com Git - mirror_qemu.git/blame - scripts/make-release
target/arm: Avoid tcg_const_ptr in disas_simd_zip_trn
[mirror_qemu.git] / scripts / make-release
CommitLineData
34bb443e
AL
1#!/bin/bash -e
2#
3# QEMU Release Script
4#
5# Copyright IBM, Corp. 2012
6#
7# Authors:
8# Anthony Liguori <aliguori@us.ibm.com>
9#
10# This work is licensed under the terms of the GNU GPLv2 or later.
11# See the COPYING file in the top-level directory.
12
9bd0bcc3
TH
13if [ $# -ne 2 ]; then
14 echo "Usage:"
15 echo " $0 gitrepo version"
16 exit 0
17fi
18
34bb443e
AL
19src="$1"
20version="$2"
21destination=qemu-${version}
22
aa4609dc
TH
23git clone --single-branch -b "v${version}" -c advice.detachedHead=false \
24 "${src}" ${destination}
25
34bb443e 26pushd ${destination}
aa4609dc
TH
27
28git submodule update --init --single-branch
8648fcd5 29(cd roms/seabios && git describe --tags --long --dirty > .version)
3fccd3f2 30(cd roms/skiboot && ./make_version.sh > .version)
45c61c6c
MR
31# Fetch edk2 submodule's submodules, since it won't have access to them via
32# the tarball later.
33#
34# A more uniform way to handle this sort of situation would be nice, but we
35# don't necessarily have much control over how a submodule handles its
36# submodule dependencies, so we continue to handle these on a case-by-case
37# basis for now.
bd0da3a3 38(cd roms/edk2 && \
aa4609dc 39 git submodule update --init --depth 1 -- \
bd0da3a3
PMD
40 ArmPkg/Library/ArmSoftFloatLib/berkeley-softfloat-3 \
41 BaseTools/Source/C/BrotliCompress/brotli \
42 CryptoPkg/Library/OpensslLib/openssl \
43 MdeModulePkg/Library/BrotliCustomDecompressLib/brotli)
34bb443e 44popd
d0081e8f 45tar --exclude=.git -cjf ${destination}.tar.bz2 ${destination}
34bb443e 46rm -rf ${destination}