From c94328112af92906ecc55c6f14d96481b723e3e4 Mon Sep 17 00:00:00 2001 From: Francis Rowe Date: Sat, 11 Jul 2015 13:11:07 -0400 Subject: build/release/src: Don't separate crossgcc Also delete build/release/crossgcc Crossgcc is now once again integrated into the _src release archive. --- (limited to 'resources/scripts/helpers') 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 -# Copyright (C) 2015 Francis Rowe -# -# 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 . -# - -[ "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" -- cgit v0.9.1