1## SPDX-License-Identifier: GPL-2.0-only 2 3# Add a handler for BCT config files 4$(call add-special-class,bct-cfg) 5bct-cfg-handler= $(eval $(obj)/generated/bct.cfg: $(1)$(2)) 6 7$(obj)/generated/bct.cfg: 8 @printf " CAT $(subst $(obj)/,,$(@))\n" 9 cat $^ > $@ 10 11subdirs-y += bct 12 13bootblock-y += bootblock.c 14bootblock-y += pmic.c 15bootblock-y += reset.c 16 17verstage-y += chromeos.c 18verstage-y += reset.c 19 20romstage-y += reset.c 21romstage-y += romstage.c 22romstage-y += chromeos.c 23romstage-y += sdram_configs.c 24 25ramstage-y += boardid.c 26ramstage-y += mainboard.c 27ramstage-y += reset.c 28ramstage-y += chromeos.c 29ramstage-y += sdram_configs.c 30