Angel Pons has submitted this change. ( 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 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 --- M Makefile 1 file changed, 5 insertions(+), 0 deletions(-)
Approvals: build bot (Jenkins): Verified Nico Huber: Looks good to me, approved Edward O'Callaghan: Looks good to me, approved
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