From 00d1c048c50a822579ac618c8fd937a4cdc82225 Mon Sep 17 00:00:00 2001 From: Aaron Kling Date: Sun, 6 Jul 2025 21:59:52 -0500 Subject: [PATCH] Create stub nx dt repo Makefile is based on t23x/nv-public --- Makefile | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 Makefile 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)