From 6121c553f5123718be391f4e9ecb689287e13a74 Mon Sep 17 00:00:00 2001 From: Dongjin Kim Date: Wed, 17 Nov 2021 03:25:51 +0900 Subject: [PATCH] ODROID-COMMON: add '--symbol' to device tree compiler This change is to create device tree node '__symbol__' to support device treey overlay features, *.dtbo won't be applied without this node. Signed-off-by: Dongjin Kim Change-Id: I3b6102c925e871947f16e7c570563011101f5f86 --- scripts/Makefile.lib | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/Makefile.lib b/scripts/Makefile.lib index 68d0134bdbf9..7a297e12bc00 100644 --- a/scripts/Makefile.lib +++ b/scripts/Makefile.lib @@ -341,7 +341,7 @@ quiet_cmd_gzip = GZIP $@ # --------------------------------------------------------------------------- DTC ?= $(objtree)/scripts/dtc/dtc DTC_FLAGS += -Wno-interrupt_provider \ - -Wno-unique_unit_address + -Wno-unique_unit_address --symbol # Disable noisy checks by default ifeq ($(findstring 1,$(KBUILD_EXTRA_WARN)),)