mirror of
git://nv-tegra.nvidia.com/device/hardware/nvidia/t23x-public-dts.git
synced 2025-12-22 09:12:02 +03:00
The path of makefile and soc overlay files has been changed from its original location. Modify according to the new location of these files. Bug 4078385 Change-Id: Ib766564d13fa8b16f3346156cc24b0f775fc3fdf Signed-off-by: Laxman Dewangan <ldewangan@nvidia.com>
20 lines
348 B
Makefile
20 lines
348 B
Makefile
DTC_FLAGS += -@
|
|
|
|
old-dtb := $(dtb-y)
|
|
old-dtbo := $(dtbo-y)
|
|
dtb-y :=
|
|
dtbo-y :=
|
|
makefile-path := t23x/nv-public
|
|
|
|
dtb-y += tegra234-p3737-0000+p3701-0000.dtb
|
|
|
|
ifneq ($(dtb-y),)
|
|
dtb-y := $(addprefix $(makefile-path)/,$(dtb-y))
|
|
endif
|
|
ifneq ($(dtbo-y),)
|
|
dtbo-y := $(addprefix $(makefile-path)/,$(dtbo-y))
|
|
endif
|
|
|
|
dtb-y += $(old-dtb)
|
|
dtbo-y += $(old-dtbo)
|