1
0
mirror of https://review.coreboot.org/flashrom.git synced 2025-04-28 23:43:42 +02:00

Makefile: Disable libusb-dependent Raiden on DOS

DOS (DJGPP 6.1.0) has no USB support.

Change-Id: I36ee1edfb0e5b8d4e2b099c0f7f8aac64ed7884f
Signed-off-by: Angel Pons <th3fanbus@gmail.com>
Reviewed-on: https://review.coreboot.org/c/flashrom/+/52474
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Edward O'Callaghan <quasisec@chromium.org>
Reviewed-by: Nico Huber <nico.h@gmx.de>
This commit is contained in:
Angel Pons 2021-04-17 17:47:54 +02:00
parent f0ab83f5f4
commit 87718aadb4

View File

@ -202,6 +202,11 @@ UNSUPPORTED_FEATURES += CONFIG_CH341A_SPI=yes
else
override CONFIG_CH341A_SPI = no
endif
ifeq ($(CONFIG_RAIDEN_DEBUG_SPI), yes)
UNSUPPORTED_FEATURES += CONFIG_RAIDEN_DEBUG_SPI=yes
else
override CONFIG_RAIDEN_DEBUG_SPI = no
endif
ifeq ($(CONFIG_STLINKV3_SPI), yes)
UNSUPPORTED_FEATURES += CONFIG_STLINKV3_SPI=yes
else