lib: When used, add timestamp.c to bootblock and verstage, too
Otherwise it won't build. Change-Id: If9e1435b0dc8bfe220b3a257976e928373fbc9a5 Signed-off-by: Patrick Georgi <pgeorgi@chromium.org> Reviewed-on: http://review.coreboot.org/10003 Tested-by: build bot (Jenkins) Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org> Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
This commit is contained in:
parent
ddcd9bd19f
commit
8b17404178
|
@ -25,6 +25,7 @@ bootblock-$(CONFIG_GENERIC_GPIO_LIB) += gpio.c
|
||||||
|
|
||||||
bootblock-$(CONFIG_GENERIC_UDELAY) += timer.c
|
bootblock-$(CONFIG_GENERIC_UDELAY) += timer.c
|
||||||
|
|
||||||
|
bootblock-$(CONFIG_COLLECT_TIMESTAMPS) += timestamp.c
|
||||||
bootblock-$(CONFIG_CONSOLE_CBMEM) += cbmem_console.c
|
bootblock-$(CONFIG_CONSOLE_CBMEM) += cbmem_console.c
|
||||||
bootblock-y += memchr.c
|
bootblock-y += memchr.c
|
||||||
bootblock-y += memcmp.c
|
bootblock-y += memcmp.c
|
||||||
|
@ -33,6 +34,7 @@ verstage-y += prog_ops.c
|
||||||
verstage-y += delay.c
|
verstage-y += delay.c
|
||||||
verstage-y += cbfs.c
|
verstage-y += cbfs.c
|
||||||
verstage-y += memcmp.c
|
verstage-y += memcmp.c
|
||||||
|
verstage-$(CONFIG_COLLECT_TIMESTAMPS) += timestamp.c
|
||||||
verstage-$(CONFIG_CONSOLE_CBMEM) += cbmem_console.c
|
verstage-$(CONFIG_CONSOLE_CBMEM) += cbmem_console.c
|
||||||
verstage-$(CONFIG_COMMON_CBFS_SPI_WRAPPER) += cbfs_spi.c
|
verstage-$(CONFIG_COMMON_CBFS_SPI_WRAPPER) += cbfs_spi.c
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue