From d356293253139bbd87c9f9d683e288ba77db7c13 Mon Sep 17 00:00:00 2001 From: Laxman Dewangan Date: Sat, 6 Jul 2024 12:35:48 +0000 Subject: [PATCH] nvidia-oot: correct the kernel config path The kernel and system type specific configuration files are placed at config/*. Adjust the path accordingly in master Makefile. Jira HOSTX-5375 Change-Id: I0883473b81a1e9c84ab80840c3f04e23e6b81075 Signed-off-by: Laxman Dewangan Reviewed-on: https://git-master.nvidia.com/r/c/linux-nv-oot/+/3169511 GVS: buildbot_gerritrpt --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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