diff --git a/Makefile b/Makefile index 7962d75c..247edd37 100644 --- a/Makefile +++ b/Makefile @@ -7,7 +7,7 @@ endif # Include kernel specific config ifneq ($(kernel_name),) -kernel_config := $(abspath $(shell dirname $(lastword $(MAKEFILE_LIST))))/Makefile.config.$(kernel_name) +kernel_config := $(abspath $(shell dirname $(lastword $(MAKEFILE_LIST))))/configs/Makefile.config.$(kernel_name) ifneq ($(wildcard $(kernel_config)),) include $(kernel_config) endif @@ -15,7 +15,7 @@ endif # Include system specific config ifneq ($(system_type),) -system_config := $(abspath $(shell dirname $(lastword $(MAKEFILE_LIST))))/Makefile.config.$(system_type) +system_config := $(abspath $(shell dirname $(lastword $(MAKEFILE_LIST))))/configs/Makefile.config.$(system_type) ifneq ($(wildcard $(system_config)),) include $(system_config) endif