1
0
mirror of https://review.coreboot.org/flashrom.git synced 2025-04-27 23:22:37 +02:00

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>
This commit is contained in:
Nico Huber 2019-06-07 17:39:18 +02:00
parent 9c78142964
commit ac3772c7b5

View File

@ -190,6 +190,12 @@ UNSUPPORTED_FEATURES += CONFIG_CH341A_SPI=yes
else else
override CONFIG_CH341A_SPI = no override CONFIG_CH341A_SPI = no
endif 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 endif
# FIXME: Should we check for Cygwin/MSVC as well? # FIXME: Should we check for Cygwin/MSVC as well?