diff options
author | Alexander Couzens <lynxis@fe80.eu> | 2017-08-09 03:22:23 +0200 |
---|---|---|
committer | Nico Huber <nico.h@gmx.de> | 2017-08-09 19:49:56 +0000 |
commit | de0326b96ce3a9ea109e8f62760b6022de256220 (patch) | |
tree | 70334e334b7accf1ffbea259d1b9d146682dd1d3 /src/mainboard/lenovo/x1_carbon_gen1 | |
parent | 9cbf3b12f508c09c2a7b823b177edadc5961a685 (diff) |
mb/lenovo/x1_carbon_gen1: add missing '+' in spd/Makefile
Each line of spd config overwriting the slot 0 instead
of appending it.
Change-Id: I0124aa34f1d4fcb30810fb7eef03d4828a7ac430
Signed-off-by: Alexander Couzens <lynxis@fe80.eu>
Tested-on: lenovo x1 carbon gen 1 with elpida 8GB
Fixes: e9787ff61f81 ("mb/lenovo/x1_carbon_gen1: Add 4GiB SPD index 2")
Reviewed-on: https://review.coreboot.org/20918
Reviewed-by: Kyösti Mälkki <kyosti.malkki@gmail.com>
Reviewed-by: Arthur Heymans <arthur@aheymans.xyz>
Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Nico Huber <nico.h@gmx.de>
Diffstat (limited to 'src/mainboard/lenovo/x1_carbon_gen1')
-rw-r--r-- | src/mainboard/lenovo/x1_carbon_gen1/spd/Makefile.inc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mainboard/lenovo/x1_carbon_gen1/spd/Makefile.inc b/src/mainboard/lenovo/x1_carbon_gen1/spd/Makefile.inc index ec6e4f32d7..0c908265ab 100644 --- a/src/mainboard/lenovo/x1_carbon_gen1/spd/Makefile.inc +++ b/src/mainboard/lenovo/x1_carbon_gen1/spd/Makefile.inc @@ -16,8 +16,8 @@ SPD_BIN = $(obj)/spd.bin SPD_SOURCES = elpida.hex # 0b0000 Single Channel 2GB -SPD_SOURCES = samsung.hex # 0b0001 placeholder -SPD_SOURCES = samsung.hex # 0b0010 4GiB +SPD_SOURCES += samsung.hex # 0b0001 placeholder +SPD_SOURCES += samsung.hex # 0b0010 4GiB SPD_DEPS := $(foreach f, $(SPD_SOURCES), src/mainboard/$(MAINBOARDDIR)/spd/$(f)) # Include spd ROM data |