From 4289ed175caee5ee633eb69f7e9705c53cfe2ffb Mon Sep 17 00:00:00 2001 From: Leandro Lanzieri Date: Thu, 28 May 2020 10:39:43 +0200 Subject: [PATCH] Kconfig: rename folder to kconfigs On case-insensitive file systems the root Kconfig file clashes with the kconfig folder where we keep constants and features, producing the deletion of one of them. This renames the folder to remove the conflict. --- Kconfig | 4 ++-- {kconfig => kconfigs}/Kconfig.consts | 0 {kconfig => kconfigs}/Kconfig.features | 0 3 files changed, 2 insertions(+), 2 deletions(-) rename {kconfig => kconfigs}/Kconfig.consts (100%) rename {kconfig => kconfigs}/Kconfig.features (100%) diff --git a/Kconfig b/Kconfig index be143e9803..d3e761d2d1 100644 --- a/Kconfig +++ b/Kconfig @@ -7,10 +7,10 @@ mainmenu "RIOT Configuration" # Load macro definitions -rsource "kconfig/Kconfig.consts" +rsource "kconfigs/Kconfig.consts" # Load feature declarations -rsource "kconfig/Kconfig.features" +rsource "kconfigs/Kconfig.features" # For now, get used modules as macros from this file (see kconfig.mk) osource "$(KCONFIG_GENERATED_DEPENDENCIES)" diff --git a/kconfig/Kconfig.consts b/kconfigs/Kconfig.consts similarity index 100% rename from kconfig/Kconfig.consts rename to kconfigs/Kconfig.consts diff --git a/kconfig/Kconfig.features b/kconfigs/Kconfig.features similarity index 100% rename from kconfig/Kconfig.features rename to kconfigs/Kconfig.features