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 <ldewangan@nvidia.com>
Reviewed-on: https://git-master.nvidia.com/r/c/linux-nv-oot/+/3169511
GVS: buildbot_gerritrpt <buildbot_gerritrpt@nvidia.com>
This commit is contained in:
Laxman Dewangan
2024-07-06 12:35:48 +00:00
committed by mobile promotions
parent e9f3b6f0aa
commit d356293253

View File

@@ -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