summaryrefslogtreecommitdiffstats
path: root/resources/libreboot/patch
diff options
context:
space:
mode:
authorFrancis Rowe <info@gluglug.org.uk>2015-06-16 06:25:45 (EDT)
committer Francis Rowe <info@gluglug.org.uk>2015-06-16 06:52:53 (EDT)
commit8658a0cb5c79a334484db926ca2fce75b5265a87 (patch)
tree87da93fbe241ea81181a1d854cebef2480b45a42 /resources/libreboot/patch
parent68ea144f45aeddb9cfb8a6a69e08ca7940ca669f (diff)
downloadlibreboot-8658a0cb5c79a334484db926ca2fce75b5265a87.zip
libreboot-8658a0cb5c79a334484db926ca2fce75b5265a87.tar.gz
libreboot-8658a0cb5c79a334484db926ca2fce75b5265a87.tar.bz2
Update coreboot again (a patch was merged upstream)
The patch for only requiring cmake for clang users was merged. This patch is important, because libreboot doesn't want to use clang, and doesn't want any dependences that it relies on which it doesn't need. Also, this and the other recent update re-add support for ACPI brightness methods on the Thinkpad X60 and T60.
Diffstat (limited to 'resources/libreboot/patch')
-rw-r--r--resources/libreboot/patch/0016-buildgcc-Define-CMAKE-only-if-clang-package-is-built.patch41
1 files changed, 0 insertions, 41 deletions
diff --git a/resources/libreboot/patch/0016-buildgcc-Define-CMAKE-only-if-clang-package-is-built.patch b/resources/libreboot/patch/0016-buildgcc-Define-CMAKE-only-if-clang-package-is-built.patch
deleted file mode 100644
index b303292..0000000
--- a/resources/libreboot/patch/0016-buildgcc-Define-CMAKE-only-if-clang-package-is-built.patch
+++ /dev/null
@@ -1,41 +0,0 @@
-From beb6138691594cd227a1b50079d14e6adc4e8ef5 Mon Sep 17 00:00:00 2001
-From: David Hendricks <dhendrix@chromium.org>
-Date: Mon, 15 Jun 2015 17:03:22 -0700
-Subject: [PATCH] buildgcc: Define $CMAKE only if clang package is built
-
-This moves the CMAKE definition down into the case statement
-for $PACKAGE so that it is only required when the user wants to
-build clang.
-
-With this approach, "./buildgcc -P clang" will error out with the
-"ERROR: Missing tool:" message if cmake is not installed.
-
-Change-Id: I1e5c1bd67ade8f93ba0390df7f234deb47b9b18a
-Signed-off-by: David Hendricks <dhendrix@chromium.org>
----
- util/crossgcc/buildgcc | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/util/crossgcc/buildgcc b/util/crossgcc/buildgcc
-index 7f440f7..552a6a2 100755
---- a/util/crossgcc/buildgcc
-+++ b/util/crossgcc/buildgcc
-@@ -165,7 +165,6 @@ searchtool()
- TAR=$(searchtool tar) || exit $?
- PATCH=$(searchtool patch) || exit $?
- MAKE=$(searchtool make) || exit $?
--CMAKE=$(searchtool cmake "cmake") || exit $?
- SHA1SUM=$(searchtool sha1sum)
- SHA512SUM=$(searchtool sha512sum)
- CHECKSUM=$SHA1SUM
-@@ -554,6 +553,7 @@ case "$PACKAGE" in
- CLANG|clang)
- NAME=clang
- PACKAGES="LLVM CFE CRT CTE"
-+ CMAKE=$(searchtool cmake "cmake") || exit $?
- ;;
- IASL|iasl)
- NAME="IASL ACPI compiler"
---
-1.9.1
-