summaryrefslogtreecommitdiff
path: root/src/mainboard/amd/mayan/Makefile.inc
diff options
context:
space:
mode:
Diffstat (limited to 'src/mainboard/amd/mayan/Makefile.inc')
-rw-r--r--src/mainboard/amd/mayan/Makefile.inc38
1 files changed, 0 insertions, 38 deletions
diff --git a/src/mainboard/amd/mayan/Makefile.inc b/src/mainboard/amd/mayan/Makefile.inc
deleted file mode 100644
index 6315fc27e3..0000000000
--- a/src/mainboard/amd/mayan/Makefile.inc
+++ /dev/null
@@ -1,38 +0,0 @@
-# SPDX-License-Identifier: GPL-2.0-only
-
-bootblock-y += bootblock.c
-bootblock-y += early_gpio.c
-bootblock-y += ec.c
-
-romstage-y += port_descriptors.c
-
-ramstage-y += chromeos.c
-ramstage-y += gpio.c
-ramstage-y += port_descriptors.c
-
-ifneq ($(wildcard $(MAINBOARD_BLOBS_DIR)/APCB_Updatable.bin),)
-APCB_SOURCES = $(MAINBOARD_BLOBS_DIR)/APCB_Updatable.bin
-APCB_SOURCES_RECOVERY = $(MAINBOARD_BLOBS_DIR)/APCB_DefaultRecovery.bin
-else
-show_notices:: warn_no_apcb
-endif
-
-ifeq ($(CONFIG_MAYAN_HAVE_MCHP_FW),y)
-$(call add_intermediate, add_mchp_fw)
- $(CBFSTOOL) $(obj)/coreboot.pre write -r EC -f $(CONFIG_MAYAN_MCHP_SIG_FILE) --fill-upward
-
-cbfs-files-y += ec/ecfw
-ec/ecfw-file := $(CONFIG_MAYAN_MCHP_FW_FILE)
-ec/ecfw-position := $(CONFIG_MAYAN_MCHP_FW_OFFSET)
-ec/ecfw-type := raw
-
-else
-show_notices:: warn_no_mchp
-endif # CONFIG_MAYAN_HAVE_MCHP_FW
-
-PHONY+=warn_no_mchp
-warn_no_mchp:
- printf "\n\t** WARNING **\n"
- printf "coreboot has been built without the EC FW.\n"
- printf "Do not flash this image. Your Mayan's power button\n"
- printf "will not respond when you press it.\n\n"