diff options
author | Stefan Reinauer <stefan.reinauer@coreboot.org> | 2013-02-28 00:12:18 +0100 |
---|---|---|
committer | Ronald G. Minnich <rminnich@gmail.com> | 2013-02-28 17:59:44 +0100 |
commit | f2e1f6a8628d4c13640688790be9550aa9839b34 (patch) | |
tree | 739bfadc770ae033a9502cda1718ef3e316bd663 /src/mainboard/google/link | |
parent | ef650a5d2456196d653667de7d02abc0591ec024 (diff) |
Drop SRC_ROOT from mainboard Makefile.incs
It's not used, and not needed.
Change-Id: Ifca92f3606ac58fc26e09676488c3add5d84ae79
Signed-off-by: Stefan Reinauer <reinauer@google.com>
Reviewed-on: http://review.coreboot.org/2548
Tested-by: build bot (Jenkins)
Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
Diffstat (limited to 'src/mainboard/google/link')
-rw-r--r-- | src/mainboard/google/link/Makefile.inc | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/mainboard/google/link/Makefile.inc b/src/mainboard/google/link/Makefile.inc index 3f04a30d62..a769d95683 100644 --- a/src/mainboard/google/link/Makefile.inc +++ b/src/mainboard/google/link/Makefile.inc @@ -27,14 +27,12 @@ ramstage-$(CONFIG_MAINBOARD_DO_NATIVE_VGA_INIT) += i915io.c smm-$(CONFIG_HAVE_SMI_HANDLER) += mainboard_smi.c SPD_BIN = $(obj)/spd.bin -SRC_ROOT = $(src)/mainboard/google/link - # Order of names in SPD_SOURCES is important! SPD_SOURCES = elpida_4Gb_1600_x16 SPD_SOURCES += samsung_4Gb_1600_1.35v_x16 SPD_SOURCES += micron_4Gb_1600_1.35v_x16 -SPD_DEPS := $(foreach f, $(SPD_SOURCES), $(SRC_ROOT)/$(f).spd.hex) +SPD_DEPS := $(foreach f, $(SPD_SOURCES), src/mainboard/$(MAINBOARDDIR)/$(f).spd.hex) # Include spd rom data $(SPD_BIN): $(SPD_DEPS) |