summaryrefslogtreecommitdiffstats
path: root/util/intelmetool/Makefile
diff options
context:
space:
mode:
authorMatthias Gazzari <mail@qtux.eu>2018-05-21 20:54:41 +0200
committerPatrick Georgi <pgeorgi@google.com>2018-05-23 08:31:45 +0000
commitd88cd708772fcd22ffa12191c85755c28dd47bbd (patch)
tree89d14479ce7f83e3f2bc9fbe3435e16defda94e7 /util/intelmetool/Makefile
parente2c2a4c42ba13b6a9055a0ccbdd1658057e44e1c (diff)
downloadcoreboot-d88cd708772fcd22ffa12191c85755c28dd47bbd.tar.gz
coreboot-d88cd708772fcd22ffa12191c85755c28dd47bbd.tar.bz2
coreboot-d88cd708772fcd22ffa12191c85755c28dd47bbd.zip
util/intelmetool: Add Makefile target for OLDARC definition
This allows one to compile intelmetool with support for older ME versions by setting the OLDARC preprocessor definition. For example, compiling with OLDARC enabled avoids the "ME: GET FW VERSION message failed:" error on the Lenovo X201i (ME version 6.0). Change-Id: I5eb0da7663e795f790e2723bb334447380724b56 Signed-off-by: Matthias Gazzari <mail@qtux.eu> Reviewed-on: https://review.coreboot.org/26450 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net> Reviewed-by: Martin Roth <martinroth@google.com>
Diffstat (limited to 'util/intelmetool/Makefile')
-rw-r--r--util/intelmetool/Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/util/intelmetool/Makefile b/util/intelmetool/Makefile
index b455a0ea86cd..d8c056c3a715 100644
--- a/util/intelmetool/Makefile
+++ b/util/intelmetool/Makefile
@@ -38,6 +38,9 @@ endif
all: pciutils dep $(PROGRAM)
+oldarc: CFLAGS += -DOLDARC
+oldarc: all
+
$(PROGRAM): $(OBJS)
$(CC) $(CFLAGS) -o $(PROGRAM) $(OBJS) $(LDFLAGS)
@@ -83,6 +86,6 @@ install: $(PROGRAM)
mkdir -p $(DESTDIR)$(PREFIX)/sbin
$(INSTALL) $(PROGRAM) $(DESTDIR)$(PREFIX)/sbin
-.PHONY: all clean distclean dep pciutils
+.PHONY: all clean distclean dep pciutils oldarc
-include .dependencies