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:47:32 +0000
commita724602fe0a573071c50a54e75dbe40ff43ecc1d (patch)
tree2abea5c6783a7bcf8777550c594ba606d2c7de5a
parent84c6fb5fe2b58c61dc4ed6a2026d2041a5beec5d (diff)
downloadflashrom-a724602fe0a573071c50a54e75dbe40ff43ecc1d.tar.gz
flashrom-a724602fe0a573071c50a54e75dbe40ff43ecc1d.tar.bz2
flashrom-a724602fe0a573071c50a54e75dbe40ff43ecc1d.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/+/33305 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> 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?