summaryrefslogtreecommitdiffstats
path: root/resources/scripts
diff options
context:
space:
mode:
authorFrancis Rowe <info@gluglug.org.uk>2015-07-11 13:11:07 (EDT)
committer Francis Rowe <info@gluglug.org.uk>2015-07-11 13:11:07 (EDT)
commitc94328112af92906ecc55c6f14d96481b723e3e4 (patch)
tree81e0bcf6937ae8578e5190d9dff5a65e4a20bbef /resources/scripts
parenta1a31353a479cce3c590dec290ed1e9413619124 (diff)
downloadlibreboot-c94328112af92906ecc55c6f14d96481b723e3e4.zip
libreboot-c94328112af92906ecc55c6f14d96481b723e3e4.tar.gz
libreboot-c94328112af92906ecc55c6f14d96481b723e3e4.tar.bz2
build/release/src: Don't separate crossgcc
Also delete build/release/crossgcc Crossgcc is now once again integrated into the _src release archive.
Diffstat (limited to 'resources/scripts')
-rwxr-xr-xresources/scripts/helpers/build/release/crossgcc46
-rwxr-xr-xresources/scripts/helpers/build/release/src3
2 files changed, 0 insertions, 49 deletions
diff --git a/resources/scripts/helpers/build/release/crossgcc b/resources/scripts/helpers/build/release/crossgcc
deleted file mode 100755
index c7aa97a..0000000
--- a/resources/scripts/helpers/build/release/crossgcc
+++ /dev/null
@@ -1,46 +0,0 @@
-#!/bin/sh
-
-#
-# helper script: generate the coreboot crossgcc archives
-#
-# Copyright (C) 2015 Patrick "P. J." McDermott <pj@pehjota.net>
-# Copyright (C) 2015 Francis Rowe <info@gluglug.org.uk>
-#
-# This program is free software: you can redistribute it and/or modify
-# it under the terms of the GNU General Public License as published by
-# the Free Software Foundation, either version 3 of the License, or
-# (at your option) any later version.
-#
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-# GNU General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with this program. If not, see <http://www.gnu.org/licenses/>.
-#
-
-[ "x${DEBUG+set}" = 'xset' ] && set -v
-set -u -e
-
-printf 'Building the coreboot crossgcc archives\n'
-
-if [ -f "version" ]; then
- # _src release archive is being used
- version="$(cat version)"
-else
- # git repo is being used
- version="$(git describe --tags HEAD)"
-fi
-versiondir="release/${version}"
-distdir="${versiondir}/crossgcc_${version}"
-
-printf 'Deleting old coreboot crossgcc archives\n'
-rm -Rf "${distdir}/"
-
-[ -d "${distdir}/" ] || mkdir -p "${distdir}/"
-
-printf 'Copying coreboot crossgcc archives to %s/\n' "${distdir}"
-cp -R coreboot/util/crossgcc/tarballs/* "${distdir}/"
-
-printf 'coreboot crossgcc archives are stored in %s/\n' "${distdir}"
diff --git a/resources/scripts/helpers/build/release/src b/resources/scripts/helpers/build/release/src
index f604d61..a4ee8cb 100755
--- a/resources/scripts/helpers/build/release/src
+++ b/resources/scripts/helpers/build/release/src
@@ -85,9 +85,6 @@ rm -f "${distdir}/resources/scripts/helpers/build/release/docs"
# Patches are not needed, because they are already applied to coreboot sources.
rm -Rf "${distdir}/resources/libreboot/patch/"
-# coreboot's crossgcc archives are distributed separately.
-rm -Rf "${distdir}/coreboot/util/crossgcc/tarballs/"
-
# ich9deblob: There are certain files in there that the user most likely does
# not want to share.
rm -f "${distdir}/resources/utilities/ich9deblob/deblobbed_descriptor.bin"