commit 00d1c048c50a822579ac618c8fd937a4cdc82225 Author: Aaron Kling Date: Sun Jul 6 21:59:52 2025 -0500 Create stub nx dt repo Makefile is based on t23x/nv-public diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..117004a --- /dev/null +++ b/Makefile @@ -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)