summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNico Huber <nico.h@gmx.de>2019-06-07 17:35:56 +0200
committerNico Huber <nico.h@gmx.de>2019-06-08 20:47:02 +0000
commit84c6fb5fe2b58c61dc4ed6a2026d2041a5beec5d (patch)
tree1a91cb1f276a9a101b71740f74ff3af52e5cf238
parent129e938e4c79caccc376d05869d2b2d08a0664ec (diff)
downloadflashrom-84c6fb5fe2b58c61dc4ed6a2026d2041a5beec5d.tar.gz
flashrom-84c6fb5fe2b58c61dc4ed6a2026d2041a5beec5d.tar.bz2
flashrom-84c6fb5fe2b58c61dc4ed6a2026d2041a5beec5d.zip
Makefile: Blacklist Digilent SPI (using USB) for DOS
Change-Id: I9a7dd5a2afcd12dd247e1f5534db61b79d77525e Signed-off-by: Nico Huber <nico.h@gmx.de> Reviewed-on: https://review.coreboot.org/c/flashrom/+/33304 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Angel Pons <th3fanbus@gmail.com>
-rw-r--r--Makefile7
1 files changed, 6 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 1e7db3ed3..4d23c39b9 100644
--- a/Makefile
+++ b/Makefile
@@ -154,7 +154,12 @@ UNSUPPORTED_FEATURES += CONFIG_PONY_SPI=yes
else
override CONFIG_PONY_SPI = no
endif
-# Dediprog, Developerbox, USB-Blaster, PICkit2, CH341A and FT2232 are not supported under DOS (missing USB support).
+# Digilent SPI, Dediprog, Developerbox, USB-Blaster, PICkit2, CH341A and FT2232 are not supported under DOS (missing USB support).
+ifeq ($(CONFIG_DIGILENT_SPI), yes)
+UNSUPPORTED_FEATURES += CONFIG_DIGILENT_SPI=yes
+else
+override CONFIG_DIGILENT_SPI = no
+endif
ifeq ($(CONFIG_DEDIPROG), yes)
UNSUPPORTED_FEATURES += CONFIG_DEDIPROG=yes
else