mirror of
https://github.com/torvalds/linux
synced 2024-11-05 18:23:50 +00:00
fd1557923b
* Remove remanants of legacy ARC FPGA platforms (AA4, ML509...) * Only nsim simulation platform is left, rename platform accordingly * AA4 DT stuff is compatible with nsim for ARC700 so rename it too Signed-off-by: Vineet Gupta <vgupta@synopsys.com>
15 lines
345 B
Makefile
15 lines
345 B
Makefile
# Built-in dtb
|
|
builtindtb-y := nsim_700
|
|
|
|
ifneq ($(CONFIG_ARC_BUILTIN_DTB_NAME),"")
|
|
builtindtb-y := $(patsubst "%",%,$(CONFIG_ARC_BUILTIN_DTB_NAME))
|
|
endif
|
|
|
|
obj-y += $(builtindtb-y).dtb.o
|
|
targets += $(builtindtb-y).dtb
|
|
|
|
.SECONDARY: $(obj)/$(builtindtb-y).dtb.S
|
|
|
|
dtbs: $(addprefix $(obj)/, $(builtindtb-y).dtb)
|
|
|
|
clean-files := *.dtb *.dtb.S
|