From 030e6439511de66e25c997eb50ee3abab1759b3b Mon Sep 17 00:00:00 2001 From: Martin Roth Date: Thu, 18 Jan 2024 16:12:31 -0700 Subject: mb/lenovo to mb/squared: 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 Change-Id: I4790adb41cb62c8c8dd44261a2926dfb6350955a Reviewed-on: https://review.coreboot.org/c/coreboot/+/80111 Reviewed-by: Felix Singer Tested-by: build bot (Jenkins) Reviewed-by: Erik van den Bogaert Reviewed-by: Maximilian Brune --- src/mainboard/system76/gaze15/Makefile.inc | 12 ------------ src/mainboard/system76/gaze15/Makefile.mk | 12 ++++++++++++ 2 files changed, 12 insertions(+), 12 deletions(-) delete mode 100644 src/mainboard/system76/gaze15/Makefile.inc create mode 100644 src/mainboard/system76/gaze15/Makefile.mk (limited to 'src/mainboard/system76/gaze15') diff --git a/src/mainboard/system76/gaze15/Makefile.inc b/src/mainboard/system76/gaze15/Makefile.inc deleted file mode 100644 index 72f13667d3..0000000000 --- a/src/mainboard/system76/gaze15/Makefile.inc +++ /dev/null @@ -1,12 +0,0 @@ -## SPDX-License-Identifier: GPL-2.0-only - -CPPFLAGS_common += -I$(src)/mainboard/$(MAINBOARDDIR)/include - -bootblock-y += bootblock.c -bootblock-y += variants/$(VARIANT_DIR)/gpio_early.c - -romstage-y += romstage.c - -ramstage-y += ramstage.c -ramstage-y += variants/$(VARIANT_DIR)/gpio.c -ramstage-y += variants/$(VARIANT_DIR)/hda_verb.c diff --git a/src/mainboard/system76/gaze15/Makefile.mk b/src/mainboard/system76/gaze15/Makefile.mk new file mode 100644 index 0000000000..72f13667d3 --- /dev/null +++ b/src/mainboard/system76/gaze15/Makefile.mk @@ -0,0 +1,12 @@ +## SPDX-License-Identifier: GPL-2.0-only + +CPPFLAGS_common += -I$(src)/mainboard/$(MAINBOARDDIR)/include + +bootblock-y += bootblock.c +bootblock-y += variants/$(VARIANT_DIR)/gpio_early.c + +romstage-y += romstage.c + +ramstage-y += ramstage.c +ramstage-y += variants/$(VARIANT_DIR)/gpio.c +ramstage-y += variants/$(VARIANT_DIR)/hda_verb.c -- cgit v1.2.3