Angel Pons has uploaded this change for review. ( https://review.coreboot.org/c/flashrom/+/52474 )
Change subject: Makefile: Disable libusb-dependent Raiden on DOS ......................................................................
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 --- M Makefile 1 file changed, 5 insertions(+), 0 deletions(-)
git pull ssh://review.coreboot.org:29418/flashrom refs/changes/74/52474/1
diff --git a/Makefile b/Makefile index 0cfff55..d496a9a 100644 --- a/Makefile +++ b/Makefile @@ -202,6 +202,11 @@ 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