mirror of
https://github.com/torvalds/linux.git
synced 2026-04-30 04:22:32 -04:00
Fix BUILTIN_DTB config which resulted in a dtb that was actually not built into the Linux image: in the same manner as Canaan soc does, create an object file from the dtb file that will get linked into the Linux image. Signed-off-by: Alexandre Ghiti <alex@ghiti.fr> Signed-off-by: Palmer Dabbelt <palmerdabbelt@google.com>
5 lines
177 B
Makefile
5 lines
177 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
dtb-$(CONFIG_SOC_SIFIVE) += hifive-unleashed-a00.dtb \
|
|
hifive-unmatched-a00.dtb
|
|
obj-$(CONFIG_BUILTIN_DTB) += $(addsuffix .o, $(dtb-y))
|