diff options
author | Martin Roth <gaumless@gmail.com> | 2024-01-18 16:10:01 -0700 |
---|---|---|
committer | Felix Singer <service+coreboot-gerrit@felixsinger.de> | 2024-01-24 11:54:19 +0000 |
commit | 5d6d8008403d09a97188e345307c6b6d652c2576 (patch) | |
tree | 48637822cb6d0f9b1cd771dd1a6f25e371f1d96a /src/mainboard/google/veyron/Makefile.mk | |
parent | 03d509ff0065f8a6289d614f5b8189f008dbc206 (diff) |
mb/google/sarien to zork: Rename Makefiles from .inc to .mk
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: Ib8a2ae26ed4380592d15e1a7b2d682639413af01
Reviewed-on: https://review.coreboot.org/c/coreboot/+/80109
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Felix Singer <service+coreboot-gerrit@felixsinger.de>
Reviewed-by: Maximilian Brune <maximilian.brune@9elements.com>
Diffstat (limited to 'src/mainboard/google/veyron/Makefile.mk')
-rw-r--r-- | src/mainboard/google/veyron/Makefile.mk | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/src/mainboard/google/veyron/Makefile.mk b/src/mainboard/google/veyron/Makefile.mk new file mode 100644 index 0000000000..6c3b7f4c51 --- /dev/null +++ b/src/mainboard/google/veyron/Makefile.mk @@ -0,0 +1,21 @@ +## SPDX-License-Identifier: GPL-2.0-only + +bootblock-y += bootblock.c +bootblock-y += boardid.c +bootblock-y += chromeos.c +bootblock-y += reset.c + +verstage-y += boardid.c +verstage-y += chromeos.c +verstage-y += reset.c + +romstage-y += boardid.c +romstage-y += chromeos.c +romstage-y += romstage.c +romstage-y += sdram_configs.c +romstage-y += reset.c + +ramstage-y += boardid.c +ramstage-y += chromeos.c +ramstage-y += mainboard.c +ramstage-y += reset.c |