diff options
Diffstat (limited to 'src/mainboard/amd/majolica/Makefile.mk')
-rw-r--r-- | src/mainboard/amd/majolica/Makefile.mk | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/src/mainboard/amd/majolica/Makefile.mk b/src/mainboard/amd/majolica/Makefile.mk new file mode 100644 index 0000000000..8aaec21cdc --- /dev/null +++ b/src/mainboard/amd/majolica/Makefile.mk @@ -0,0 +1,26 @@ +# SPDX-License-Identifier: GPL-2.0-only + +bootblock-y += bootblock.c +bootblock-y += early_gpio.c + +romstage-y += port_descriptors.c + +ramstage-y += chromeos.c +ramstage-y += port_descriptors.c + +APCB_SOURCES = $(MAINBOARD_BLOBS_DIR)/APCB_CZN_D4.bin +APCB_SOURCES_RECOVERY = $(MAINBOARD_BLOBS_DIR)/APCB_CZN_D4_DefaultRecovery.bin + +ifeq ($(CONFIG_MAJOLICA_HAVE_MCHP_FW),y) +$(call add_intermediate, add_mchp_fw) + $(CBFSTOOL) $< write -r EC -f $(CONFIG_MAJOLICA_MCHP_FW_FILE) --fill-upward +else +show_notices:: warn_no_mchp +endif # CONFIG_MAJOLICA_HAVE_MCHP_FW + +PHONY+=warn_no_mchp +warn_no_mchp: + printf "\n\t** WARNING **\n" + printf "coreboot has been built without the Microchip EC FW.\n" + printf "Do not flash this image. Your Majolica's power button\n" + printf "will not respond when you press it.\n\n" |