diff options
author | Martin Roth <gaumless@gmail.com> | 2024-01-18 16:09:11 -0700 |
---|---|---|
committer | Felix Singer <service+coreboot-gerrit@felixsinger.de> | 2024-01-24 11:54:06 +0000 |
commit | 03d509ff0065f8a6289d614f5b8189f008dbc206 (patch) | |
tree | b90318c4d5d021a904db9cebf9ef735e40f68527 /src/mainboard/google/rambi/variants/heli/Makefile.mk | |
parent | 0fbd20e58f5e73fb531fbb8dbb6089c607262122 (diff) |
mb/google/oak to rex: 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: I85cda24aa7dec82d23e8a321dac03ec737f4c503
Reviewed-on: https://review.coreboot.org/c/coreboot/+/80108
Reviewed-by: Felix Singer <service+coreboot-gerrit@felixsinger.de>
Reviewed-by: Maximilian Brune <maximilian.brune@9elements.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/mainboard/google/rambi/variants/heli/Makefile.mk')
-rw-r--r-- | src/mainboard/google/rambi/variants/heli/Makefile.mk | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/src/mainboard/google/rambi/variants/heli/Makefile.mk b/src/mainboard/google/rambi/variants/heli/Makefile.mk new file mode 100644 index 0000000000..eacc7b5a09 --- /dev/null +++ b/src/mainboard/google/rambi/variants/heli/Makefile.mk @@ -0,0 +1,26 @@ +## SPDX-License-Identifier: GPL-2.0-only + +# Order matters for SPD sources. The following indices +# define the SPD data to use. +# RAM_ID Vendor Vendor_PN Freq Size Total_size channel +# 0b0011 Hynix H5TC4G63AFR-PBA 1600MHZ 4Gb 2GB single-channel +# 0b0100 Hynix H5TC4G63CFR-PBA 1600MHZ 4Gb 2GB single-channel +# 0b0101 Samsung K4B4G1646Q-HYK0 1600MHZ 4Gb 2GB single-channel +# 0b0110 Hynix H5TC4G63CFR-PBA 1600MHZ 4Gb 4GB dual-channel +# 0b0111 Samsung K4B4G1646Q-HYK0 1600MHZ 4Gb 4GB dual-channel +SPD_SOURCES = empty # 0b0000 +SPD_SOURCES += empty # 0b0001 +SPD_SOURCES += empty # 0b0010 +SPD_SOURCES += hynix_2GiB_dimm_H5TC4G63AFR-PBA # 0b0011 +SPD_SOURCES += hynix_2GiB_dimm_H5TC4G63CFR-PBA # 0b0100 +SPD_SOURCES += samsung_2GiB_dimm_K4B4G1646Q-HYK0 # 0b0101 +SPD_SOURCES += hynix_2GiB_dimm_H5TC4G63CFR-PBA # 0b0110 +SPD_SOURCES += samsung_2GiB_dimm_K4B4G1646Q-HYK0 # 0b0111 +SPD_SOURCES += empty # 0b1000 +SPD_SOURCES += empty # 0b1001 +SPD_SOURCES += empty # 0b1010 +SPD_SOURCES += empty # 0b1011 +SPD_SOURCES += empty # 0b1100 +SPD_SOURCES += empty # 0b1101 +SPD_SOURCES += empty # 0b1110 +SPD_SOURCES += empty # 0b1111 |