summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Tretter <m.tretter@pengutronix.de>2021-08-03 11:17:28 +0200
committerMichael Olbrich <m.olbrich@pengutronix.de>2021-08-03 13:12:22 +0200
commit0c72a4ecd06d5f0d7990efce045ba5bb5ee68f24 (patch)
tree72b8159154aaf18c1433c6348c56fcc9de7a23a5
parent89a84394677eb123d799187858bd6c820d524d80 (diff)
downloadptxdist-0c72a4ecd06d5f0d7990efce045ba5bb5ee68f24.tar.gz
ptxdist-0c72a4ecd06d5f0d7990efce045ba5bb5ee68f24.tar.xz
blspec-entry: fix device tree based generation
KERNEL_DTB is just the option to enable the device tree generation. The actual dts files are stored in KERNEL_DTS. Fixes: f50cd144 ("rework device-tree handling") Signed-off-by: Michael Tretter <m.tretter@pengutronix.de> Message-Id: <20210803091728.45703-1-m.tretter@pengutronix.de> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
-rw-r--r--rules/blspec-entry.make2
1 files changed, 1 insertions, 1 deletions
diff --git a/rules/blspec-entry.make b/rules/blspec-entry.make
index 0108f09d9..f393b1bda 100644
--- a/rules/blspec-entry.make
+++ b/rules/blspec-entry.make
@@ -19,7 +19,7 @@ BLSPEC_ENTRY_VERSION := $(KERNEL_VERSION)
BLSPEC_ENTRY_TITLE := PTXdist - $(call remove_quotes,$(PTXCONF_PROJECT_VENDOR)-$(PTXCONF_PROJECT))
ifdef PTXCONF_BLSPEC_ENTRY_DEVICETREE
-BLSPEC_ENTRY_NAMES = $(basename $(notdir $(KERNEL_DTB)))
+BLSPEC_ENTRY_NAMES = $(basename $(notdir $(KERNEL_DTS)))
blspec/title = $(BLSPEC_ENTRY_TITLE) $(strip $(1))
blspec/devicetree = devicetree\t/boot/$(strip $(1)).dtb
else