5 # Copyright IBM, Corp. 2012
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.
15 echo " $0 gitrepo version"
21 destination
=qemu-
${version}
23 git clone
--single-branch -b "v${version}" -c advice.detachedHead
=false \
24 "${src}" ${destination}
28 git submodule update
--init --single-branch
29 (cd roms
/seabios
&& git describe
--tags --long --dirty > .version
)
30 (cd roms
/skiboot
&& .
/make_version.sh
> .version
)
31 # Fetch edk2 submodule's submodules, since it won't have access to them via
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
39 git submodule update
--init --depth 1 -- \
40 ArmPkg
/Library
/ArmSoftFloatLib
/berkeley-softfloat-3 \
41 BaseTools
/Source
/C
/BrotliCompress
/brotli \
42 CryptoPkg
/Library
/OpensslLib
/openssl \
43 MdeModulePkg
/Library
/BrotliCustomDecompressLib
/brotli
)
45 tar --exclude=.git
-cjf ${destination}.
tar.bz2
${destination}