From 0fbd20e58f5e73fb531fbb8dbb6089c607262122 Mon Sep 17 00:00:00 2001 From: Martin Roth Date: Thu, 18 Jan 2024 16:06:37 -0700 Subject: mb/google/gale to nyan_blaze: 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: I92f8bd7e1c9fc6e4120fb94c2299a266304e19de Reviewed-on: https://review.coreboot.org/c/coreboot/+/80107 Reviewed-by: Felix Singer Reviewed-by: Maximilian Brune Tested-by: build bot (Jenkins) --- src/mainboard/google/kahlee/Makefile.inc | 23 ---------------------- src/mainboard/google/kahlee/Makefile.mk | 23 ++++++++++++++++++++++ .../google/kahlee/variants/aleena/Makefile.inc | 3 --- .../google/kahlee/variants/aleena/Makefile.mk | 3 +++ .../google/kahlee/variants/baseboard/Makefile.inc | 18 ----------------- .../google/kahlee/variants/baseboard/Makefile.mk | 18 +++++++++++++++++ .../kahlee/variants/baseboard/spd/Makefile.inc | 18 ----------------- .../kahlee/variants/baseboard/spd/Makefile.mk | 18 +++++++++++++++++ .../google/kahlee/variants/careena/Makefile.inc | 7 ------- .../google/kahlee/variants/careena/Makefile.mk | 7 +++++++ .../kahlee/variants/careena/spd/Makefile.inc | 18 ----------------- .../google/kahlee/variants/careena/spd/Makefile.mk | 18 +++++++++++++++++ .../google/kahlee/variants/grunt/Makefile.inc | 3 --- .../google/kahlee/variants/grunt/Makefile.mk | 3 +++ .../google/kahlee/variants/liara/Makefile.inc | 3 --- .../google/kahlee/variants/liara/Makefile.mk | 3 +++ .../google/kahlee/variants/nuwani/Makefile.inc | 3 --- .../google/kahlee/variants/nuwani/Makefile.mk | 3 +++ .../google/kahlee/variants/nuwani/spd/Makefile.inc | 18 ----------------- .../google/kahlee/variants/nuwani/spd/Makefile.mk | 18 +++++++++++++++++ .../google/kahlee/variants/treeya/Makefile.inc | 5 ----- .../google/kahlee/variants/treeya/Makefile.mk | 5 +++++ .../google/kahlee/variants/treeya/spd/Makefile.inc | 18 ----------------- .../google/kahlee/variants/treeya/spd/Makefile.mk | 18 +++++++++++++++++ 24 files changed, 137 insertions(+), 137 deletions(-) delete mode 100644 src/mainboard/google/kahlee/Makefile.inc create mode 100644 src/mainboard/google/kahlee/Makefile.mk delete mode 100644 src/mainboard/google/kahlee/variants/aleena/Makefile.inc create mode 100644 src/mainboard/google/kahlee/variants/aleena/Makefile.mk delete mode 100644 src/mainboard/google/kahlee/variants/baseboard/Makefile.inc create mode 100644 src/mainboard/google/kahlee/variants/baseboard/Makefile.mk delete mode 100644 src/mainboard/google/kahlee/variants/baseboard/spd/Makefile.inc create mode 100644 src/mainboard/google/kahlee/variants/baseboard/spd/Makefile.mk delete mode 100644 src/mainboard/google/kahlee/variants/careena/Makefile.inc create mode 100644 src/mainboard/google/kahlee/variants/careena/Makefile.mk delete mode 100644 src/mainboard/google/kahlee/variants/careena/spd/Makefile.inc create mode 100644 src/mainboard/google/kahlee/variants/careena/spd/Makefile.mk delete mode 100644 src/mainboard/google/kahlee/variants/grunt/Makefile.inc create mode 100644 src/mainboard/google/kahlee/variants/grunt/Makefile.mk delete mode 100644 src/mainboard/google/kahlee/variants/liara/Makefile.inc create mode 100644 src/mainboard/google/kahlee/variants/liara/Makefile.mk delete mode 100644 src/mainboard/google/kahlee/variants/nuwani/Makefile.inc create mode 100644 src/mainboard/google/kahlee/variants/nuwani/Makefile.mk delete mode 100644 src/mainboard/google/kahlee/variants/nuwani/spd/Makefile.inc create mode 100644 src/mainboard/google/kahlee/variants/nuwani/spd/Makefile.mk delete mode 100644 src/mainboard/google/kahlee/variants/treeya/Makefile.inc create mode 100644 src/mainboard/google/kahlee/variants/treeya/Makefile.mk delete mode 100644 src/mainboard/google/kahlee/variants/treeya/spd/Makefile.inc create mode 100644 src/mainboard/google/kahlee/variants/treeya/spd/Makefile.mk (limited to 'src/mainboard/google/kahlee') diff --git a/src/mainboard/google/kahlee/Makefile.inc b/src/mainboard/google/kahlee/Makefile.inc deleted file mode 100644 index 94705922a6..0000000000 --- a/src/mainboard/google/kahlee/Makefile.inc +++ /dev/null @@ -1,23 +0,0 @@ -# SPDX-License-Identifier: GPL-2.0-only - -bootblock-y += bootblock/bootblock.c -bootblock-y += BiosCallOuts.c -bootblock-y += ec.c - -romstage-y += BiosCallOuts.c -romstage-y += chromeos.c -romstage-y += OemCustomize.c - -ramstage-y += BiosCallOuts.c -ramstage-y += chromeos.c -ramstage-y += ec.c -ramstage-y += OemCustomize.c - -verstage-y += chromeos.c -verstage-y += ec.c - -subdirs-y += variants/baseboard -CPPFLAGS_common += -I$(src)/mainboard/$(MAINBOARDDIR)/variants/baseboard/include - -subdirs-y += variants/$(VARIANT_DIR) -CPPFLAGS_common += -I$(src)/mainboard/$(MAINBOARDDIR)/variants/$(VARIANT_DIR)/include diff --git a/src/mainboard/google/kahlee/Makefile.mk b/src/mainboard/google/kahlee/Makefile.mk new file mode 100644 index 0000000000..94705922a6 --- /dev/null +++ b/src/mainboard/google/kahlee/Makefile.mk @@ -0,0 +1,23 @@ +# SPDX-License-Identifier: GPL-2.0-only + +bootblock-y += bootblock/bootblock.c +bootblock-y += BiosCallOuts.c +bootblock-y += ec.c + +romstage-y += BiosCallOuts.c +romstage-y += chromeos.c +romstage-y += OemCustomize.c + +ramstage-y += BiosCallOuts.c +ramstage-y += chromeos.c +ramstage-y += ec.c +ramstage-y += OemCustomize.c + +verstage-y += chromeos.c +verstage-y += ec.c + +subdirs-y += variants/baseboard +CPPFLAGS_common += -I$(src)/mainboard/$(MAINBOARDDIR)/variants/baseboard/include + +subdirs-y += variants/$(VARIANT_DIR) +CPPFLAGS_common += -I$(src)/mainboard/$(MAINBOARDDIR)/variants/$(VARIANT_DIR)/include diff --git a/src/mainboard/google/kahlee/variants/aleena/Makefile.inc b/src/mainboard/google/kahlee/variants/aleena/Makefile.inc deleted file mode 100644 index 3a8e8607ad..0000000000 --- a/src/mainboard/google/kahlee/variants/aleena/Makefile.inc +++ /dev/null @@ -1,3 +0,0 @@ -# SPDX-License-Identifier: GPL-2.0-only - -subdirs-y += ../baseboard/spd diff --git a/src/mainboard/google/kahlee/variants/aleena/Makefile.mk b/src/mainboard/google/kahlee/variants/aleena/Makefile.mk new file mode 100644 index 0000000000..3a8e8607ad --- /dev/null +++ b/src/mainboard/google/kahlee/variants/aleena/Makefile.mk @@ -0,0 +1,3 @@ +# SPDX-License-Identifier: GPL-2.0-only + +subdirs-y += ../baseboard/spd diff --git a/src/mainboard/google/kahlee/variants/baseboard/Makefile.inc b/src/mainboard/google/kahlee/variants/baseboard/Makefile.inc deleted file mode 100644 index be4074d28c..0000000000 --- a/src/mainboard/google/kahlee/variants/baseboard/Makefile.inc +++ /dev/null @@ -1,18 +0,0 @@ -# SPDX-License-Identifier: GPL-2.0-only - -bootblock-y += gpio.c -bootblock-y += OemCustomize.c - -romstage-y += OemCustomize.c -romstage-y += gpio.c -romstage-y += memory.c - -ramstage-y += gpio.c -ramstage-y += mainboard.c - -# Add OEM ID table -ifeq ($(CONFIG_USE_OEM_BIN),y) -cbfs-files-y += oem.bin -oem.bin-file := $(call strip_quotes,$(CONFIG_OEM_BIN_FILE)) -oem.bin-type := raw -endif #($(CONFIG_USE_OEM_BIN),y) diff --git a/src/mainboard/google/kahlee/variants/baseboard/Makefile.mk b/src/mainboard/google/kahlee/variants/baseboard/Makefile.mk new file mode 100644 index 0000000000..be4074d28c --- /dev/null +++ b/src/mainboard/google/kahlee/variants/baseboard/Makefile.mk @@ -0,0 +1,18 @@ +# SPDX-License-Identifier: GPL-2.0-only + +bootblock-y += gpio.c +bootblock-y += OemCustomize.c + +romstage-y += OemCustomize.c +romstage-y += gpio.c +romstage-y += memory.c + +ramstage-y += gpio.c +ramstage-y += mainboard.c + +# Add OEM ID table +ifeq ($(CONFIG_USE_OEM_BIN),y) +cbfs-files-y += oem.bin +oem.bin-file := $(call strip_quotes,$(CONFIG_OEM_BIN_FILE)) +oem.bin-type := raw +endif #($(CONFIG_USE_OEM_BIN),y) diff --git a/src/mainboard/google/kahlee/variants/baseboard/spd/Makefile.inc b/src/mainboard/google/kahlee/variants/baseboard/spd/Makefile.inc deleted file mode 100644 index 1ec3342891..0000000000 --- a/src/mainboard/google/kahlee/variants/baseboard/spd/Makefile.inc +++ /dev/null @@ -1,18 +0,0 @@ -## SPDX-License-Identifier: GPL-2.0-only - -SPD_SOURCES = hynix-H5AN8G6NAFR-UH # 0b0000 -SPD_SOURCES += hynix-H5ANAG6NAMR-UH # 0b0001 -SPD_SOURCES += micron-MT40A512M16JY-083E-B # 0b0010 -SPD_SOURCES += micron-MT40A1G16KNR-075-E # 0b0011 -SPD_SOURCES += samsung-K4A8G165WB-BCRC # 0b0100 -SPD_SOURCES += samsung-K4AAG165WB-MCRC # 0b0101 -SPD_SOURCES += micron-MT40A512M16LY-075-E # 0b0110 -SPD_SOURCES += hynix-H5ANAG6NCMR-VKC # 0b0111 -SPD_SOURCES += hynix-H5AN8G6NCJR-VKC # 0b1000 -SPD_SOURCES += samsung-K4A8G165WC-BCTD # 0b1001 -SPD_SOURCES += samsung-K4AAG165WB-MCTD # 0b1010 -SPD_SOURCES += micron-MT40A512M16TB-062E-J # 0b1011 -SPD_SOURCES += empty # 0b1100 -SPD_SOURCES += empty # 0b1101 -SPD_SOURCES += empty # 0b1110 -SPD_SOURCES += empty # 0b1111 diff --git a/src/mainboard/google/kahlee/variants/baseboard/spd/Makefile.mk b/src/mainboard/google/kahlee/variants/baseboard/spd/Makefile.mk new file mode 100644 index 0000000000..1ec3342891 --- /dev/null +++ b/src/mainboard/google/kahlee/variants/baseboard/spd/Makefile.mk @@ -0,0 +1,18 @@ +## SPDX-License-Identifier: GPL-2.0-only + +SPD_SOURCES = hynix-H5AN8G6NAFR-UH # 0b0000 +SPD_SOURCES += hynix-H5ANAG6NAMR-UH # 0b0001 +SPD_SOURCES += micron-MT40A512M16JY-083E-B # 0b0010 +SPD_SOURCES += micron-MT40A1G16KNR-075-E # 0b0011 +SPD_SOURCES += samsung-K4A8G165WB-BCRC # 0b0100 +SPD_SOURCES += samsung-K4AAG165WB-MCRC # 0b0101 +SPD_SOURCES += micron-MT40A512M16LY-075-E # 0b0110 +SPD_SOURCES += hynix-H5ANAG6NCMR-VKC # 0b0111 +SPD_SOURCES += hynix-H5AN8G6NCJR-VKC # 0b1000 +SPD_SOURCES += samsung-K4A8G165WC-BCTD # 0b1001 +SPD_SOURCES += samsung-K4AAG165WB-MCTD # 0b1010 +SPD_SOURCES += micron-MT40A512M16TB-062E-J # 0b1011 +SPD_SOURCES += empty # 0b1100 +SPD_SOURCES += empty # 0b1101 +SPD_SOURCES += empty # 0b1110 +SPD_SOURCES += empty # 0b1111 diff --git a/src/mainboard/google/kahlee/variants/careena/Makefile.inc b/src/mainboard/google/kahlee/variants/careena/Makefile.inc deleted file mode 100644 index 57d8bf1349..0000000000 --- a/src/mainboard/google/kahlee/variants/careena/Makefile.inc +++ /dev/null @@ -1,7 +0,0 @@ -# SPDX-License-Identifier: GPL-2.0-only - -subdirs-y += ./spd - -bootblock-y += variant.c -romstage-y += variant.c -ramstage-y += mainboard.c diff --git a/src/mainboard/google/kahlee/variants/careena/Makefile.mk b/src/mainboard/google/kahlee/variants/careena/Makefile.mk new file mode 100644 index 0000000000..57d8bf1349 --- /dev/null +++ b/src/mainboard/google/kahlee/variants/careena/Makefile.mk @@ -0,0 +1,7 @@ +# SPDX-License-Identifier: GPL-2.0-only + +subdirs-y += ./spd + +bootblock-y += variant.c +romstage-y += variant.c +ramstage-y += mainboard.c diff --git a/src/mainboard/google/kahlee/variants/careena/spd/Makefile.inc b/src/mainboard/google/kahlee/variants/careena/spd/Makefile.inc deleted file mode 100644 index 4c1da68f3d..0000000000 --- a/src/mainboard/google/kahlee/variants/careena/spd/Makefile.inc +++ /dev/null @@ -1,18 +0,0 @@ -## SPDX-License-Identifier: GPL-2.0-only - -SPD_SOURCES = hynix-H5AN8G6NAFR-UH # 0b0000 -SPD_SOURCES += hynix-H5ANAG6NAMR-UH # 0b0001 -SPD_SOURCES += micron-MT40A512M16JY-083E-B # 0b0010 -SPD_SOURCES += micron-MT40A1G16KNR-075-E # 0b0011 -SPD_SOURCES += samsung-K4A8G165WB-BCRC # 0b0100 -SPD_SOURCES += samsung-K4AAG165WB-MCRC # 0b0101 -SPD_SOURCES += micron-MT40A512M16LY-075-E # 0b0110 -SPD_SOURCES += hynix-H5ANAG6NCMR-VKC # 0b0111 -SPD_SOURCES += hynix-H5AN8G6NCJR-VKC # 0b1000 -SPD_SOURCES += samsung-K4A8G165WC-BCTD # 0b1001 -SPD_SOURCES += samsung-K4AAG165WB-MCTD # 0b1010 -SPD_SOURCES += micron-MT40A512M16TB-062E-J # 0b1011 -SPD_SOURCES += samsung-K4AAG165WA-BCTD # 0b1100 -SPD_SOURCES += hynix-H5ANAG6NCMR-XNC # 0b1101 -SPD_SOURCES += micron-MT40A1G16RC-062E-B # 0b1110 -SPD_SOURCES += samsung-K4AAG165WA-BCWE # 0b1111 diff --git a/src/mainboard/google/kahlee/variants/careena/spd/Makefile.mk b/src/mainboard/google/kahlee/variants/careena/spd/Makefile.mk new file mode 100644 index 0000000000..4c1da68f3d --- /dev/null +++ b/src/mainboard/google/kahlee/variants/careena/spd/Makefile.mk @@ -0,0 +1,18 @@ +## SPDX-License-Identifier: GPL-2.0-only + +SPD_SOURCES = hynix-H5AN8G6NAFR-UH # 0b0000 +SPD_SOURCES += hynix-H5ANAG6NAMR-UH # 0b0001 +SPD_SOURCES += micron-MT40A512M16JY-083E-B # 0b0010 +SPD_SOURCES += micron-MT40A1G16KNR-075-E # 0b0011 +SPD_SOURCES += samsung-K4A8G165WB-BCRC # 0b0100 +SPD_SOURCES += samsung-K4AAG165WB-MCRC # 0b0101 +SPD_SOURCES += micron-MT40A512M16LY-075-E # 0b0110 +SPD_SOURCES += hynix-H5ANAG6NCMR-VKC # 0b0111 +SPD_SOURCES += hynix-H5AN8G6NCJR-VKC # 0b1000 +SPD_SOURCES += samsung-K4A8G165WC-BCTD # 0b1001 +SPD_SOURCES += samsung-K4AAG165WB-MCTD # 0b1010 +SPD_SOURCES += micron-MT40A512M16TB-062E-J # 0b1011 +SPD_SOURCES += samsung-K4AAG165WA-BCTD # 0b1100 +SPD_SOURCES += hynix-H5ANAG6NCMR-XNC # 0b1101 +SPD_SOURCES += micron-MT40A1G16RC-062E-B # 0b1110 +SPD_SOURCES += samsung-K4AAG165WA-BCWE # 0b1111 diff --git a/src/mainboard/google/kahlee/variants/grunt/Makefile.inc b/src/mainboard/google/kahlee/variants/grunt/Makefile.inc deleted file mode 100644 index 3a8e8607ad..0000000000 --- a/src/mainboard/google/kahlee/variants/grunt/Makefile.inc +++ /dev/null @@ -1,3 +0,0 @@ -# SPDX-License-Identifier: GPL-2.0-only - -subdirs-y += ../baseboard/spd diff --git a/src/mainboard/google/kahlee/variants/grunt/Makefile.mk b/src/mainboard/google/kahlee/variants/grunt/Makefile.mk new file mode 100644 index 0000000000..3a8e8607ad --- /dev/null +++ b/src/mainboard/google/kahlee/variants/grunt/Makefile.mk @@ -0,0 +1,3 @@ +# SPDX-License-Identifier: GPL-2.0-only + +subdirs-y += ../baseboard/spd diff --git a/src/mainboard/google/kahlee/variants/liara/Makefile.inc b/src/mainboard/google/kahlee/variants/liara/Makefile.inc deleted file mode 100644 index 3a8e8607ad..0000000000 --- a/src/mainboard/google/kahlee/variants/liara/Makefile.inc +++ /dev/null @@ -1,3 +0,0 @@ -# SPDX-License-Identifier: GPL-2.0-only - -subdirs-y += ../baseboard/spd diff --git a/src/mainboard/google/kahlee/variants/liara/Makefile.mk b/src/mainboard/google/kahlee/variants/liara/Makefile.mk new file mode 100644 index 0000000000..3a8e8607ad --- /dev/null +++ b/src/mainboard/google/kahlee/variants/liara/Makefile.mk @@ -0,0 +1,3 @@ +# SPDX-License-Identifier: GPL-2.0-only + +subdirs-y += ../baseboard/spd diff --git a/src/mainboard/google/kahlee/variants/nuwani/Makefile.inc b/src/mainboard/google/kahlee/variants/nuwani/Makefile.inc deleted file mode 100644 index 21b0276a72..0000000000 --- a/src/mainboard/google/kahlee/variants/nuwani/Makefile.inc +++ /dev/null @@ -1,3 +0,0 @@ -# SPDX-License-Identifier: GPL-2.0-only - -subdirs-y += ./spd diff --git a/src/mainboard/google/kahlee/variants/nuwani/Makefile.mk b/src/mainboard/google/kahlee/variants/nuwani/Makefile.mk new file mode 100644 index 0000000000..21b0276a72 --- /dev/null +++ b/src/mainboard/google/kahlee/variants/nuwani/Makefile.mk @@ -0,0 +1,3 @@ +# SPDX-License-Identifier: GPL-2.0-only + +subdirs-y += ./spd diff --git a/src/mainboard/google/kahlee/variants/nuwani/spd/Makefile.inc b/src/mainboard/google/kahlee/variants/nuwani/spd/Makefile.inc deleted file mode 100644 index e72c9e6d7a..0000000000 --- a/src/mainboard/google/kahlee/variants/nuwani/spd/Makefile.inc +++ /dev/null @@ -1,18 +0,0 @@ -## SPDX-License-Identifier: GPL-2.0-only - -SPD_SOURCES = hynix-H5AN8G6NAFR-UH # 0b0000 -SPD_SOURCES += hynix-H5ANAG6NAMR-UH # 0b0001 -SPD_SOURCES += micron-MT40A512M16JY-083E-B # 0b0010 -SPD_SOURCES += micron-MT40A1G16KNR-075-E # 0b0011 -SPD_SOURCES += samsung-K4A8G165WB-BCRC # 0b0100 -SPD_SOURCES += samsung-K4AAG165WB-MCRC # 0b0101 -SPD_SOURCES += micron-MT40A512M16LY-075-E # 0b0110 -SPD_SOURCES += hynix-H5ANAG6NCMR-VKC # 0b0111 -SPD_SOURCES += hynix-H5AN8G6NCJR-VKC # 0b1000 -SPD_SOURCES += samsung-K4A8G165WC-BCTD # 0b1001 -SPD_SOURCES += samsung-K4AAG165WB-MCTD # 0b1010 -SPD_SOURCES += micron-MT40A512M16TB-062E-J # 0b1011 -SPD_SOURCES += samsung-K4A8G165WC-BCWE # 0b1100 -SPD_SOURCES += hynix-H5AN8G6NCJR-XNC # 0b1101 -SPD_SOURCES += empty # 0b1110 -SPD_SOURCES += empty # 0b1111 diff --git a/src/mainboard/google/kahlee/variants/nuwani/spd/Makefile.mk b/src/mainboard/google/kahlee/variants/nuwani/spd/Makefile.mk new file mode 100644 index 0000000000..e72c9e6d7a --- /dev/null +++ b/src/mainboard/google/kahlee/variants/nuwani/spd/Makefile.mk @@ -0,0 +1,18 @@ +## SPDX-License-Identifier: GPL-2.0-only + +SPD_SOURCES = hynix-H5AN8G6NAFR-UH # 0b0000 +SPD_SOURCES += hynix-H5ANAG6NAMR-UH # 0b0001 +SPD_SOURCES += micron-MT40A512M16JY-083E-B # 0b0010 +SPD_SOURCES += micron-MT40A1G16KNR-075-E # 0b0011 +SPD_SOURCES += samsung-K4A8G165WB-BCRC # 0b0100 +SPD_SOURCES += samsung-K4AAG165WB-MCRC # 0b0101 +SPD_SOURCES += micron-MT40A512M16LY-075-E # 0b0110 +SPD_SOURCES += hynix-H5ANAG6NCMR-VKC # 0b0111 +SPD_SOURCES += hynix-H5AN8G6NCJR-VKC # 0b1000 +SPD_SOURCES += samsung-K4A8G165WC-BCTD # 0b1001 +SPD_SOURCES += samsung-K4AAG165WB-MCTD # 0b1010 +SPD_SOURCES += micron-MT40A512M16TB-062E-J # 0b1011 +SPD_SOURCES += samsung-K4A8G165WC-BCWE # 0b1100 +SPD_SOURCES += hynix-H5AN8G6NCJR-XNC # 0b1101 +SPD_SOURCES += empty # 0b1110 +SPD_SOURCES += empty # 0b1111 diff --git a/src/mainboard/google/kahlee/variants/treeya/Makefile.inc b/src/mainboard/google/kahlee/variants/treeya/Makefile.inc deleted file mode 100644 index 525e76c875..0000000000 --- a/src/mainboard/google/kahlee/variants/treeya/Makefile.inc +++ /dev/null @@ -1,5 +0,0 @@ -# SPDX-License-Identifier: GPL-2.0-only - -subdirs-y += ./spd - -ramstage-y += audio.c diff --git a/src/mainboard/google/kahlee/variants/treeya/Makefile.mk b/src/mainboard/google/kahlee/variants/treeya/Makefile.mk new file mode 100644 index 0000000000..525e76c875 --- /dev/null +++ b/src/mainboard/google/kahlee/variants/treeya/Makefile.mk @@ -0,0 +1,5 @@ +# SPDX-License-Identifier: GPL-2.0-only + +subdirs-y += ./spd + +ramstage-y += audio.c diff --git a/src/mainboard/google/kahlee/variants/treeya/spd/Makefile.inc b/src/mainboard/google/kahlee/variants/treeya/spd/Makefile.inc deleted file mode 100644 index e72c9e6d7a..0000000000 --- a/src/mainboard/google/kahlee/variants/treeya/spd/Makefile.inc +++ /dev/null @@ -1,18 +0,0 @@ -## SPDX-License-Identifier: GPL-2.0-only - -SPD_SOURCES = hynix-H5AN8G6NAFR-UH # 0b0000 -SPD_SOURCES += hynix-H5ANAG6NAMR-UH # 0b0001 -SPD_SOURCES += micron-MT40A512M16JY-083E-B # 0b0010 -SPD_SOURCES += micron-MT40A1G16KNR-075-E # 0b0011 -SPD_SOURCES += samsung-K4A8G165WB-BCRC # 0b0100 -SPD_SOURCES += samsung-K4AAG165WB-MCRC # 0b0101 -SPD_SOURCES += micron-MT40A512M16LY-075-E # 0b0110 -SPD_SOURCES += hynix-H5ANAG6NCMR-VKC # 0b0111 -SPD_SOURCES += hynix-H5AN8G6NCJR-VKC # 0b1000 -SPD_SOURCES += samsung-K4A8G165WC-BCTD # 0b1001 -SPD_SOURCES += samsung-K4AAG165WB-MCTD # 0b1010 -SPD_SOURCES += micron-MT40A512M16TB-062E-J # 0b1011 -SPD_SOURCES += samsung-K4A8G165WC-BCWE # 0b1100 -SPD_SOURCES += hynix-H5AN8G6NCJR-XNC # 0b1101 -SPD_SOURCES += empty # 0b1110 -SPD_SOURCES += empty # 0b1111 diff --git a/src/mainboard/google/kahlee/variants/treeya/spd/Makefile.mk b/src/mainboard/google/kahlee/variants/treeya/spd/Makefile.mk new file mode 100644 index 0000000000..e72c9e6d7a --- /dev/null +++ b/src/mainboard/google/kahlee/variants/treeya/spd/Makefile.mk @@ -0,0 +1,18 @@ +## SPDX-License-Identifier: GPL-2.0-only + +SPD_SOURCES = hynix-H5AN8G6NAFR-UH # 0b0000 +SPD_SOURCES += hynix-H5ANAG6NAMR-UH # 0b0001 +SPD_SOURCES += micron-MT40A512M16JY-083E-B # 0b0010 +SPD_SOURCES += micron-MT40A1G16KNR-075-E # 0b0011 +SPD_SOURCES += samsung-K4A8G165WB-BCRC # 0b0100 +SPD_SOURCES += samsung-K4AAG165WB-MCRC # 0b0101 +SPD_SOURCES += micron-MT40A512M16LY-075-E # 0b0110 +SPD_SOURCES += hynix-H5ANAG6NCMR-VKC # 0b0111 +SPD_SOURCES += hynix-H5AN8G6NCJR-VKC # 0b1000 +SPD_SOURCES += samsung-K4A8G165WC-BCTD # 0b1001 +SPD_SOURCES += samsung-K4AAG165WB-MCTD # 0b1010 +SPD_SOURCES += micron-MT40A512M16TB-062E-J # 0b1011 +SPD_SOURCES += samsung-K4A8G165WC-BCWE # 0b1100 +SPD_SOURCES += hynix-H5AN8G6NCJR-XNC # 0b1101 +SPD_SOURCES += empty # 0b1110 +SPD_SOURCES += empty # 0b1111 -- cgit v1.2.3