diff options
author | Martin Roth <martinroth@google.com> | 2018-01-09 13:54:26 -0800 |
---|---|---|
committer | Martin Roth <martinroth@google.com> | 2018-01-10 02:18:02 +0000 |
commit | ef841b84693f5431e1865064ee28c0ec5cbcedb0 (patch) | |
tree | 656805590281c1d66d8c368d9b1c29b4ddea69f3 | |
parent | a63f4c47b13d6f7cc2857d3c4c8cf999b668210c (diff) | |
download | coreboot-ef841b84693f5431e1865064ee28c0ec5cbcedb0.tar.xz |
mainboard/google/kahlee: Update SPD Makefile
The .spd.hex text is added to the name by the build process. This
was causing a failure because we were trying to add the files:
'file.spd.hex.spd.hex' to the build.
Remove the additional .spd.hex text.
BUG=b:71535311
TEST=Build
Change-Id: I11df7a90c979503676a66c6502900a13f1a8e359
Signed-off-by: Martin Roth <martinroth@google.com>
Reviewed-on: https://review.coreboot.org/23189
Reviewed-by: Aaron Durbin <adurbin@chromium.org>
Reviewed-by: Marc Jones <marc@marcjonesconsulting.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Chris Ching <chingcodes@chromium.org>
-rw-r--r-- | src/mainboard/google/kahlee/variants/grunt/spd/Makefile.inc | 32 |
1 files changed, 16 insertions, 16 deletions
diff --git a/src/mainboard/google/kahlee/variants/grunt/spd/Makefile.inc b/src/mainboard/google/kahlee/variants/grunt/spd/Makefile.inc index db0cf9cd31..201c6eea95 100644 --- a/src/mainboard/google/kahlee/variants/grunt/spd/Makefile.inc +++ b/src/mainboard/google/kahlee/variants/grunt/spd/Makefile.inc @@ -16,19 +16,19 @@ LIB_SPD_DEPS = $(foreach f, $(SPD_SOURCES), src/mainboard/$(MAINBOARDDIR)/variants/$(VARIANT_DIR)/spd/$(f).spd.hex) -SPD_SOURCES = hynix-H5AN8G6NAFR-UH.spd.hex # 0b0000 -SPD_SOURCES += hynix-H5ANAG6NAMR-UH.spd.hex # 1b0001 -SPD_SOURCES += micron-MT40A512M16JY-083E:B.spd.hex # 2b0010 -SPD_SOURCES += micron-MT40A1G16KNR-075:E.spd.hex # 3b0011 -SPD_SOURCES += samsung-K4A8G165WB-BCRC.spd.hex # 4b0100 -SPD_SOURCES += samsung-K4AAG165WB-MCRC.spd.hex # 5b0101 -SPD_SOURCES += empty # 6b0110 -SPD_SOURCES += empty # 7b0111 -SPD_SOURCES += empty # 8b1000 -SPD_SOURCES += empty # 9b1001 -SPD_SOURCES += empty # Ab1010 -SPD_SOURCES += empty # Bb1011 -SPD_SOURCES += empty # Cb1100 -SPD_SOURCES += empty # Db1101 -SPD_SOURCES += empty # Eb1110 -SPD_SOURCES += empty # Fb1111 +SPD_SOURCES = hynix-H5AN8G6NAFR-UH # 0b0000 +SPD_SOURCES += hynix-H5ANAG6NAMR-UH # 1b0001 +SPD_SOURCES += micron-MT40A512M16JY-083E:B # 2b0010 +SPD_SOURCES += micron-MT40A1G16KNR-075:E # 3b0011 +SPD_SOURCES += samsung-K4A8G165WB-BCRC # 4b0100 +SPD_SOURCES += samsung-K4AAG165WB-MCRC # 5b0101 +SPD_SOURCES += empty # 6b0110 +SPD_SOURCES += empty # 7b0111 +SPD_SOURCES += empty # 8b1000 +SPD_SOURCES += empty # 9b1001 +SPD_SOURCES += empty # Ab1010 +SPD_SOURCES += empty # Bb1011 +SPD_SOURCES += empty # Cb1100 +SPD_SOURCES += empty # Db1101 +SPD_SOURCES += empty # Eb1110 +SPD_SOURCES += empty # Fb1111 |