diff options
author | Tom Rini <trini@konsulko.com> | 2023-05-03 09:51:12 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2023-05-03 09:51:12 -0400 |
commit | a423e69b1715a1b10fb28a2b280dd5086b6c7b7e (patch) | |
tree | 6c22e5dd129bbfcae1aa221f3f3e979012831a4a | |
parent | a05e0d0e6b9103542a1076f9cab0005f400fa072 (diff) | |
download | u-boot-TEST/simplify-dts-Makefiles-v2.zip u-boot-TEST/simplify-dts-Makefiles-v2.tar.gz u-boot-TEST/simplify-dts-Makefiles-v2.tar.bz2 |
scripts/Makefile.dts: Rework logic to catch moreTEST/simplify-dts-Makefiles-v2
Changes from Rasmus Villemoes <rasmus.villemoes@prevas.dk>
Just throwing in a commit here to test.
Signed-off-by: Tom Rini <trini@konsulko.com>
-rw-r--r-- | scripts/Makefile.dts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/Makefile.dts b/scripts/Makefile.dts index 2561025..5e2429c 100644 --- a/scripts/Makefile.dts +++ b/scripts/Makefile.dts @@ -1,3 +1,3 @@ # SPDX-License-Identifier: GPL-2.0+ -dtb-y += $(patsubst %,%.dtb,$(subst ",,$(CONFIG_$(SPL_)OF_LIST))) +dtb-y += $(patsubst %,%.dtb,$(subst ",,$(CONFIG_DEFAULT_DEVICE_TREE) $(CONFIG_OF_LIST) $(CONFIG_SPL_OF_LIST))) |