3 # Author: Fam Zheng <famz@redhat.com>
5 # Archive source tree, including submodules. This is created for test code to
6 # export the source files, in order to be built in a different environment,
7 # such as in a docker instance or VM.
9 # This code is licensed under the GPL version 2 or later. See
10 # the COPYING file in the top-level directory.
17 if test $# -lt 1; then
18 error
"Usage: $0 <output tarball>"
21 tar_file
=$
(realpath
"$1")
22 sub_tdir
=$
(mktemp
-d "${tar_file%.tar}.sub.XXXXXXXX")
23 sub_file
="${sub_tdir}/submodule.tar"
25 # We want a predictable list of submodules for builds, that is
26 # independent of what the developer currently has initialized
27 # in their checkout, because the build environment is completely
28 # different to the host OS.
29 subprojects
="keycodemapdb libvfio-user berkeley-softfloat-3 berkeley-testfloat-3"
35 if test "$sub_deinit" != ""; then
36 git submodule deinit
$sub_deinit
40 trap "cleanup" 0 1 2 3 15
44 if ! git diff-index
--quiet --ignore-submodules=all HEAD
-- &>/dev
/null
46 retval
=$
(git stash create
)
51 git archive
--format tar "$(tree_ish)" > "$tar_file"
52 test $?
-ne 0 && error
"failed to archive qemu"
54 for sp
in $subprojects; do
55 meson subprojects download
$sp
56 test $?
-ne 0 && error
"failed to download subproject $sp"
57 tar --append --file "$tar_file" --exclude=.git subprojects
/$sp
58 test $?
-ne 0 && error
"failed to append subproject $sp to $tar_file"