Nico Huber has uploaded this change for review. ( https://review.coreboot.org/c/flashrom/+/33296
Change subject: Makefile: Also blacklist J-Link SPI for DOS ......................................................................
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 --- M Makefile 1 file changed, 6 insertions(+), 0 deletions(-)
git pull ssh://review.coreboot.org:29418/flashrom refs/changes/96/33296/1
diff --git a/Makefile b/Makefile index 4d23c39..e08a3f6 100644 --- a/Makefile +++ b/Makefile @@ -190,6 +190,12 @@ 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?