Create stub nx dt repo

Makefile is based on t23x/nv-public
This commit is contained in:
Aaron Kling
2025-07-06 21:59:52 -05:00
commit 00d1c048c5

18
Makefile Normal file
View File

@@ -0,0 +1,18 @@
DTC_FLAGS += -@
old-dtb := $(dtb-y)
old-dtbo := $(dtbo-y)
dtb-y :=
dtbo-y :=
makefile-path := t21x/nx
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)