upstream u-boot with additional patches for our devices/boards:
https://lists.denx.de/pipermail/u-boot/2017-March/282789.html (AXP crashes) ;
Gbit ethernet patch for some LIME2 revisions ;
with SPI flash support
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
531 B
22 lines
531 B
#
|
|
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
|
|
dtb-$(CONFIG_TARGET_AP121) += ap121.dtb
|
|
dtb-$(CONFIG_TARGET_AP143) += ap143.dtb
|
|
dtb-$(CONFIG_TARGET_BOSTON) += img,boston.dtb
|
|
dtb-$(CONFIG_TARGET_MALTA) += mti,malta.dtb
|
|
dtb-$(CONFIG_TARGET_PIC32MZDASK) += pic32mzda_sk.dtb
|
|
dtb-$(CONFIG_TARGET_XILFPGA) += nexys4ddr.dtb
|
|
dtb-$(CONFIG_BOARD_TPLINK_WDR4300) += tplink_wdr4300.dtb
|
|
|
|
targets += $(dtb-y)
|
|
|
|
# Add any required device tree compiler flags here
|
|
DTC_FLAGS +=
|
|
|
|
PHONY += dtbs
|
|
dtbs: $(addprefix $(obj)/, $(dtb-y))
|
|
@:
|
|
|
|
clean-files := *.dtb
|
|
|