From 3d606cffb115bbb541eea1713092e4472a5a6923 Mon Sep 17 00:00:00 2001 From: Martin Roth Date: Thu, 18 Jan 2024 15:52:48 -0700 Subject: mb/51nb to mb/gigabyte: 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: I422cb475723006ca42be93508fb0bf4b1e4e84d3 Reviewed-on: https://review.coreboot.org/c/coreboot/+/80104 Reviewed-by: Maximilian Brune Reviewed-by: Erik van den Bogaert Tested-by: build bot (Jenkins) Reviewed-by: Felix Singer --- src/mainboard/biostar/th61-itx/Makefile.inc | 9 --------- src/mainboard/biostar/th61-itx/Makefile.mk | 9 +++++++++ 2 files changed, 9 insertions(+), 9 deletions(-) delete mode 100644 src/mainboard/biostar/th61-itx/Makefile.inc create mode 100644 src/mainboard/biostar/th61-itx/Makefile.mk (limited to 'src/mainboard/biostar') diff --git a/src/mainboard/biostar/th61-itx/Makefile.inc b/src/mainboard/biostar/th61-itx/Makefile.inc deleted file mode 100644 index 33b55d2d4f..0000000000 --- a/src/mainboard/biostar/th61-itx/Makefile.inc +++ /dev/null @@ -1,9 +0,0 @@ -## SPDX-License-Identifier: GPL-2.0-only - -bootblock-y += gpio.c -romstage-y += gpio.c - -ramstage-y += hda_verb.c -ramstage-$(CONFIG_MAINBOARD_USE_LIBGFXINIT) += gma-mainboard.ads -bootblock-y += early_init.c -romstage-y += early_init.c diff --git a/src/mainboard/biostar/th61-itx/Makefile.mk b/src/mainboard/biostar/th61-itx/Makefile.mk new file mode 100644 index 0000000000..33b55d2d4f --- /dev/null +++ b/src/mainboard/biostar/th61-itx/Makefile.mk @@ -0,0 +1,9 @@ +## SPDX-License-Identifier: GPL-2.0-only + +bootblock-y += gpio.c +romstage-y += gpio.c + +ramstage-y += hda_verb.c +ramstage-$(CONFIG_MAINBOARD_USE_LIBGFXINIT) += gma-mainboard.ads +bootblock-y += early_init.c +romstage-y += early_init.c -- cgit v1.2.3