diff options
author | Furquan Shaikh <furquan@chromium.org> | 2017-01-11 22:16:40 -0800 |
---|---|---|
committer | Martin Roth <martinroth@google.com> | 2017-01-13 17:44:13 +0100 |
commit | e539ffbb70909d58e4bd7c095389d113bb947539 (patch) | |
tree | 65aefb65614f1d181730ef6b7c2cd752e7fc35a2 /src/mainboard/google/poppy/spd/Makefile.inc | |
parent | b3b5dd93e97ea5b66b6280866494adcb36471a64 (diff) |
mainboard/google/poppy: Correct the index for SPD binaries
BUG=chrome-os-partner:60513
BRANCH=None
TEST=Picks up correct SPD for index.
Change-Id: Iac683ab3b8151747940b0ad7e257da3d9b0ac622
Signed-off-by: Furquan Shaikh <furquan@chromium.org>
Reviewed-on: https://review.coreboot.org/18112
Tested-by: build bot (Jenkins)
Reviewed-by: Rizwan Qureshi <rizwan.qureshi@intel.com>
Reviewed-by: Aaron Durbin <adurbin@chromium.org>
Diffstat (limited to 'src/mainboard/google/poppy/spd/Makefile.inc')
-rw-r--r-- | src/mainboard/google/poppy/spd/Makefile.inc | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/src/mainboard/google/poppy/spd/Makefile.inc b/src/mainboard/google/poppy/spd/Makefile.inc index 25818dd00b..2a3c0c0803 100644 --- a/src/mainboard/google/poppy/spd/Makefile.inc +++ b/src/mainboard/google/poppy/spd/Makefile.inc @@ -19,10 +19,12 @@ romstage-y += spd.c SPD_BIN = $(obj)/spd.bin SPD_SOURCES = empty # 0b0000 -SPD_SOURCES += micron_dimm_MT52L512M64D4PQ-107 # 0b0001 -SPD_SOURCES += hynix_dimm_H9CCNNNCPTALBR-NUD # 0b0010 -SPD_SOURCES += micron_dimm_MT52L1G64D8QC-107 # 0b0011 -SPD_SOURCES += hynix_dimm_H9CCNNNFAGMLLR-NUD # 0b0100 +SPD_SOURCES += empty # 0b0001 +SPD_SOURCES += empty # 0b0010 +SPD_SOURCES += micron_dimm_MT52L512M64D4PQ-107 # 0b0011 +SPD_SOURCES += hynix_dimm_H9CCNNNCPTALBR-NUD # 0b0100 +SPD_SOURCES += micron_dimm_MT52L1G64D8QC-107 # 0b0101 +SPD_SOURCES += hynix_dimm_H9CCNNNFAGMLLR-NUD # 0b0110 SPD_DEPS := $(foreach f, $(SPD_SOURCES), src/mainboard/$(MAINBOARDDIR)/spd/$(f).spd.hex) |