diff options
author | Francis Rowe <info@gluglug.org.uk> | 2015-07-11 18:11:07 +0100 |
---|---|---|
committer | Francis Rowe <info@gluglug.org.uk> | 2015-07-11 18:11:07 +0100 |
commit | c94328112af92906ecc55c6f14d96481b723e3e4 (patch) | |
tree | 81e0bcf6937ae8578e5190d9dff5a65e4a20bbef | |
parent | a1a31353a479cce3c590dec290ed1e9413619124 (diff) | |
download | librebootfr-c94328112af92906ecc55c6f14d96481b723e3e4.tar.gz librebootfr-c94328112af92906ecc55c6f14d96481b723e3e4.zip |
build/release/src: Don't separate crossgcc
Also delete build/release/crossgcc
Crossgcc is now once again integrated into the _src release
archive.
-rw-r--r-- | docs/git/index.html | 4 | ||||
-rwxr-xr-x | resources/scripts/helpers/build/release/crossgcc | 46 | ||||
-rwxr-xr-x | resources/scripts/helpers/build/release/src | 3 |
3 files changed, 0 insertions, 53 deletions
diff --git a/docs/git/index.html b/docs/git/index.html index d5c29a10..d81f8ea9 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 c7aa97a7..00000000 --- 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 f604d617..a4ee8cb0 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" |