diff options
author | Francis Rowe <info@gluglug.org.uk> | 2015-05-17 01:00:01 +0100 |
---|---|---|
committer | Francis Rowe <info@gluglug.org.uk> | 2015-05-17 01:00:01 +0100 |
commit | 85d2699b2db28c21ecbbae662ea09d0fbd967d6e (patch) | |
tree | f7cedf9f300f5e62258f5d9fb8aca70b5aea5d1e /resources/scripts | |
parent | c368508ac286cb3e8d8e1274f6b243667a300923 (diff) | |
download | librebootfr-85d2699b2db28c21ecbbae662ea09d0fbd967d6e.tar.gz librebootfr-85d2699b2db28c21ecbbae662ea09d0fbd967d6e.zip |
build/release/archives: don't compress crossgcc
It's already compressed. Compressing it more didn't save any space
and just increased the time taken for the build to finish.
Diffstat (limited to 'resources/scripts')
-rwxr-xr-x | resources/scripts/helpers/build/release/archives | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/resources/scripts/helpers/build/release/archives b/resources/scripts/helpers/build/release/archives index b645010a..06ff35f9 100755 --- a/resources/scripts/helpers/build/release/archives +++ b/resources/scripts/helpers/build/release/archives @@ -435,12 +435,11 @@ rm -rf libreboot_src/tobuild/ rm -f libreboot_src/tobuild.tar.xz # separate coreboot's crossgcc toolchain into a new archive -mv libreboot_src/coreboot/util/crossgcc/tarballs/ libreboot_crossgcc +mv libreboot_src/coreboot/util/crossgcc/tarballs/ crossgcc # mention the commit ID (libreboot, git) in the release archives cat commitid > libreboot_src/commitid cat commitid > libreboot_util/commitid -cat commitid > libreboot_crossgcc/commitid # create lzma compressed src archive printf "Compressing libreboot_src/ into libreboot_src.tar.xz\n" @@ -450,14 +449,10 @@ printf "Compressing libreboot_util/ into libreboot_util.tar.xz\n" # create lzma compressed util archive tar -c libreboot_util | xz -9e >libreboot_util.tar.xz -printf "Compressing libreboot_crossgcc/ into libreboot_crossgcc.tar.xz\n" -# create lzma compressed crossgcc archive -tar -c libreboot_crossgcc | xz -9e >libreboot_crossgcc.tar.xz - # Move the archives to the release directory mv libreboot_src.tar.xz release/ mv libreboot_util.tar.xz release/ -mv libreboot_crossgcc.tar.xz release/ +mv crossgcc/ release/ # Create a symlink to the commitid file, in release/ cat commitid > release/commitid @@ -470,7 +465,6 @@ printf "\n\n" # The uncompressed archives are no longer needed rm -rf libreboot_src rm -rf libreboot_util -rm -rf libreboot_crossgcc # For those utilities that have to be built on the target ./build external source |