mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-07 13:44:29 +00:00
adc9b09a23
Real marketing name of the board was recently updated so to accommodate that change renaming the board and all related to it. Signed-off-by: Alexey Brodkin <abrodkin@synopsys.com>
19 lines
469 B
Makefile
19 lines
469 B
Makefile
# SPDX-License-Identifier: GPL-2.0+
|
|
|
|
dtb-$(CONFIG_TARGET_AXS101) += axs101.dtb
|
|
dtb-$(CONFIG_TARGET_AXS103) += axs103.dtb
|
|
dtb-$(CONFIG_TARGET_NSIM) += nsim.dtb
|
|
dtb-$(CONFIG_TARGET_TB100) += abilis_tb100.dtb
|
|
dtb-$(CONFIG_TARGET_EMSDP) += emsdp.dtb
|
|
dtb-$(CONFIG_TARGET_HSDK) += hsdk.dtb
|
|
dtb-$(CONFIG_TARGET_IOT_DEVKIT) += iot_devkit.dtb
|
|
|
|
targets += $(dtb-y)
|
|
|
|
DTC_FLAGS += -R 4 -p 0x1000
|
|
|
|
PHONY += dtbs
|
|
dtbs: $(addprefix $(obj)/, $(dtb-y))
|
|
@:
|
|
|
|
clean-files := *.dtb
|