From c69456c756682187f37306202b30d0e2a60c54ff Mon Sep 17 00:00:00 2001 From: Marian Buschsieweke Date: Thu, 14 May 2020 13:51:53 +0200 Subject: [PATCH] Kconfig: Allow using external boards Replaces `$(RIOTBOARD)/$(BOARD)` by `$(BOARDDIR)` to allow using external boards. --- Kconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Kconfig b/Kconfig index 802c3bd69d..0f3a644d06 100644 --- a/Kconfig +++ b/Kconfig @@ -10,7 +10,7 @@ mainmenu "RIOT Configuration" osource "$(KCONFIG_GENERATED_DEPENDENCIES)" # Load first board configurations, which might override CPU's -orsource "$(RIOTBOARD)/$(BOARD)/Kconfig" +orsource "$(BOARDDIR)/Kconfig" orsource "$(RIOTCPU)/$(CPU)/Kconfig" rsource "$(RIOTBOARD)/Kconfig"