summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNico Huber <nico.h@gmx.de>2019-06-07 17:39:18 +0200
committerNico Huber <nico.h@gmx.de>2019-06-08 20:46:21 +0000
commitac3772c7b5a245543d22f503cc8ad0eafcf927b8 (patch)
treeef16fb7653b81b8be9d978012437ff3d83144823
parent9c78142964bfaf935c01a2d4749b31711359aa9d (diff)
downloadflashrom-ac3772c7b5a245543d22f503cc8ad0eafcf927b8.tar.gz
flashrom-ac3772c7b5a245543d22f503cc8ad0eafcf927b8.tar.bz2
flashrom-ac3772c7b5a245543d22f503cc8ad0eafcf927b8.zip
Makefile: Also blacklist J-Link SPI for DOS
libjaylink will probably never be available. Change-Id: Ie9222f82e16fe4c76fe7dd0f9aac7de6a862ab98 Signed-off-by: Nico Huber <nico.h@gmx.de> Reviewed-on: https://review.coreboot.org/c/flashrom/+/33296 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Arthur Heymans <arthur@aheymans.xyz> Reviewed-by: Marc Schink <flashrom-dev@marcschink.de> Reviewed-by: Thomas Heijligen <src@posteo.de> Reviewed-by: Angel Pons <th3fanbus@gmail.com>
-rw-r--r--Makefile6
1 files changed, 6 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 4d23c39b9..e08a3f608 100644
--- a/Makefile
+++ b/Makefile
@@ -190,6 +190,12 @@ UNSUPPORTED_FEATURES += CONFIG_CH341A_SPI=yes
else
override CONFIG_CH341A_SPI = no
endif
+# libjaylink is also not available for DOS
+ifeq ($(CONFIG_JLINK_SPI), yes)
+UNSUPPORTED_FEATURES += CONFIG_JLINK_SPI=yes
+else
+override CONFIG_JLINK_SPI = no
+endif
endif
# FIXME: Should we check for Cygwin/MSVC as well?