mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-11 07:34:31 +00:00
2c3f9261c8
Synopsys DesignWare ARC EM Development Kit (ARC EMDK) is an FPGA-based development platform from Synopsys aimed to speed-up development of software for ARC EM cores and entire subsystems based on ARC EM like Data Fusion, Secure and Sensor & Control subsystems. U-Boot is supposed to be used as a primary bootloader on EMDK allowing users to easily load and start their application from micro-SD card. Signed-off-by: Alexey Brodkin <abrodkin@synopsys.com>
18 lines
416 B
Makefile
18 lines
416 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_EMDK) += emdk.dtb
|
|
dtb-$(CONFIG_TARGET_HSDK) += hsdk.dtb
|
|
|
|
targets += $(dtb-y)
|
|
|
|
DTC_FLAGS += -R 4 -p 0x1000
|
|
|
|
PHONY += dtbs
|
|
dtbs: $(addprefix $(obj)/, $(dtb-y))
|
|
@:
|
|
|
|
clean-files := *.dtb
|