The .inc suffix is confusing to various tools as it's not specific to Makefiles. This means that editors don't recognize the files, and don't open them with highlighting and any other specific editor functionality. This issue is also seen in the release notes generation script where Makefiles get renamed before running cloc. Signed-off-by: Martin Roth <gaumless@gmail.com> Change-Id: I422cb475723006ca42be93508fb0bf4b1e4e84d3 Reviewed-on: https://review.coreboot.org/c/coreboot/+/80104 Reviewed-by: Maximilian Brune <maximilian.brune@9elements.com> Reviewed-by: Erik van den Bogaert <ebogaert@eltan.com> Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Felix Singer <service+coreboot-gerrit@felixsinger.de>
34 lines
948 B
Makefile
34 lines
948 B
Makefile
# SPDX-License-Identifier: GPL-2.0-only
|
|
|
|
bootblock-y += bootblock.c
|
|
bootblock-y += variants/$(VARIANT_DIR)/early_gpio.c
|
|
|
|
ramstage-y += variants/$(VARIANT_DIR)/gpio.c
|
|
ramstage-y += variants/$(VARIANT_DIR)/port_descriptors.c
|
|
|
|
ifneq ($(CONFIG_MANDOLIN_LPC),y)
|
|
ramstage-y += emmc_gpio.c
|
|
endif
|
|
|
|
ifeq ($(CONFIG_BOARD_AMD_MANDOLIN),y)
|
|
APCB_SOURCES = $(MAINBOARD_BLOBS_DIR)/APCB_mandolin.bin
|
|
else # CONFIG_BOARD_AMD_CEREME
|
|
APCB_SOURCES = $(MAINBOARD_BLOBS_DIR)/APCB_cereme.bin
|
|
endif
|
|
|
|
ifeq ($(CONFIG_MANDOLIN_HAVE_MCHP_FW),y)
|
|
|
|
$(call add_intermediate, add_mchp_fw)
|
|
$(CBFSTOOL) $< write -r EC -f $(CONFIG_MANDOLIN_MCHP_FW_FILE) --fill-upward
|
|
|
|
else
|
|
show_notices:: warn_no_mchp
|
|
endif # CONFIG_MANDOLIN_HAVE_MCHP_FW
|
|
|
|
PHONY+=warn_no_mchp
|
|
warn_no_mchp:
|
|
printf "\n\t** WARNING **\n"
|
|
printf "coreboot has been built without the Microchip EC.\n"
|
|
printf "Do not flash this image. Your Mandolin's power button\n"
|
|
printf "will not respond when you press it.\n\n"
|