Felix Singer has uploaded this change for review. ( https://review.coreboot.org/c/flashrom/+/68010 )
Change subject: [WIP] Makefile: Fix developerbox spi programmer dependencies ......................................................................
[WIP] Makefile: Fix developerbox spi programmer dependencies
Signed-off-by: Felix Singer felixsinger@posteo.net Change-Id: I55dd4a0faeb40f1f2cea75796db131c4b3dc2890 --- M Makefile 1 file changed, 14 insertions(+), 0 deletions(-)
git pull ssh://review.coreboot.org:29418/flashrom refs/changes/10/68010/1
diff --git a/Makefile b/Makefile index e08a3f6..57a23c5 100644 --- a/Makefile +++ b/Makefile @@ -735,12 +735,16 @@ ifeq ($(CONFIG_OGP_SPI), yes) override CONFIG_BITBANG_SPI = yes else +ifeq ($(CONFIG_DEVELOPERBOX_SPI, yes)) +override CONFIG_BITBANG_SPI = yes +else CONFIG_BITBANG_SPI ?= no endif endif endif endif endif +endif
############################################################################### # Handle CONFIG_* variables that depend on others set (and verified) above.