mirror of
https://github.com/u-boot/u-boot.git
synced 2025-05-09 03:21:51 +00:00
dts: support building all dtb files for a specific vendor
This adjusts OF_UPSTREAM to behave more like the kernel by allowing for all the devicetree files for a given vendor to be compiled. This is useful for Qualcomm in particular as most boards are supported by a single U-Boot build just provided with a different DT. Signed-off-by: Caleb Connolly <caleb.connolly@linaro.org> Reviewed-by: Neil Armstrong <neil.armstrong@linaro.org> Tested-by: Neil Armstrong <neil.armstrong@linaro.org> # on Amlogic boards builds
This commit is contained in:
parent
1ef61c338d
commit
0525cb2ae0
2 changed files with 37 additions and 0 deletions
|
@ -1,3 +1,16 @@
|
|||
# SPDX-License-Identifier: GPL-2.0+
|
||||
|
||||
dtb-y += $(patsubst %,%.dtb,$(subst ",,$(CONFIG_DEFAULT_DEVICE_TREE) $(CONFIG_OF_LIST) $(CONFIG_SPL_OF_LIST)))
|
||||
|
||||
ifeq ($(CONFIG_OF_UPSTREAM_BUILD_VENDOR),y)
|
||||
ifeq ($(CONFIG_ARM64),y)
|
||||
dt_dir := $(srctree)/dts/upstream/src/arm64
|
||||
else
|
||||
dt_dir := $(srctree)/dts/upstream/src/$(ARCH)
|
||||
endif
|
||||
|
||||
dtb-vendor_dts := $(patsubst %.dts,%.dtb,$(wildcard $(dt_dir)/$(subst ",,$(CONFIG_OF_UPSTREAM_VENDOR))/*.dts))
|
||||
|
||||
dtb-y += $(subst $(dt_dir)/,,$(dtb-vendor_dts))
|
||||
|
||||
endif
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue