summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--docs/git/index.html4
-rwxr-xr-xresources/scripts/helpers/build/release/crossgcc46
-rwxr-xr-xresources/scripts/helpers/build/release/src3
3 files changed, 0 insertions, 53 deletions
diff --git a/docs/git/index.html b/docs/git/index.html
index d5c29a1..d81f8ea 100644
--- a/docs/git/index.html
+++ b/docs/git/index.html
@@ -871,10 +871,6 @@
$ <b>./build release tobuild</b>
</p>
<p>
- crossgcc archives:<br/>
- $ <b>./build release crossgcc</b>
- </p>
- <p>
Documentation archive (<b>does not work on _src release archive, only git</b>):<br/>
$ <b>./build release docs</b>
</p>
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"