ui: compile dbus-display1.c with -fPIC as necessary
[qemu/kevin.git] / scripts / make-release
blob6e0433de24dc8a37cefae6d828a2958309bbf1c1
1 #!/bin/bash -e
3 # QEMU Release Script
5 # Copyright IBM, Corp. 2012
7 # Authors:
8 # Anthony Liguori <aliguori@us.ibm.com>
10 # This work is licensed under the terms of the GNU GPLv2 or later.
11 # See the COPYING file in the top-level directory.
13 if [ $# -ne 2 ]; then
14 echo "Usage:"
15 echo " $0 gitrepo version"
16 exit 0
19 # Only include wraps that are invoked with subproject()
20 SUBPROJECTS="libvfio-user keycodemapdb berkeley-softfloat-3 berkeley-testfloat-3"
22 src="$1"
23 version="$2"
24 destination=qemu-${version}
26 git clone --single-branch -b "v${version}" -c advice.detachedHead=false \
27 "${src}" ${destination}
29 pushd ${destination}
31 git submodule update --init --single-branch
32 meson subprojects download $SUBPROJECTS
34 (cd roms/seabios && git describe --tags --long --dirty > .version)
35 (cd roms/skiboot && ./make_version.sh > .version)
36 # Fetch edk2 submodule's submodules, since it won't have access to them via
37 # the tarball later.
39 # A more uniform way to handle this sort of situation would be nice, but we
40 # don't necessarily have much control over how a submodule handles its
41 # submodule dependencies, so we continue to handle these on a case-by-case
42 # basis for now.
43 (cd roms/edk2 && \
44 git submodule update --init --depth 1 -- \
45 ArmPkg/Library/ArmSoftFloatLib/berkeley-softfloat-3 \
46 BaseTools/Source/C/BrotliCompress/brotli \
47 CryptoPkg/Library/OpensslLib/openssl \
48 MdeModulePkg/Library/BrotliCustomDecompressLib/brotli)
49 popd
50 tar --exclude=.git -cJf ${destination}.tar.xz ${destination}
51 rm -rf ${destination}