vboot: add cbfs_core
And we don't support lzma compressed data in verstage. Change-Id: I3d8d3290f147871c49e9440e9b54bbf2742aaa9e Signed-off-by: Aaron Durbin <adurbin@chromium.org> Signed-off-by: Patrick Georgi <pgeorgi@chromium.org> Reviewed-on: http://review.coreboot.org/10103 Tested-by: build bot (Jenkins)
This commit is contained in:
committed by
Patrick Georgi
parent
2daadf8f57
commit
ae1fcc3c1d
@ -33,6 +33,7 @@ bootblock-y += memcmp.c
|
|||||||
verstage-y += prog_ops.c
|
verstage-y += prog_ops.c
|
||||||
verstage-y += delay.c
|
verstage-y += delay.c
|
||||||
verstage-y += cbfs.c
|
verstage-y += cbfs.c
|
||||||
|
verstage-y += cbfs_core.c
|
||||||
verstage-y += memcmp.c
|
verstage-y += memcmp.c
|
||||||
verstage-$(CONFIG_COLLECT_TIMESTAMPS) += timestamp.c
|
verstage-$(CONFIG_COLLECT_TIMESTAMPS) += timestamp.c
|
||||||
verstage-$(CONFIG_CONSOLE_CBMEM) += cbmem_console.c
|
verstage-$(CONFIG_CONSOLE_CBMEM) += cbmem_console.c
|
||||||
|
@ -15,6 +15,8 @@
|
|||||||
# define CBFS_MINI_BUILD
|
# define CBFS_MINI_BUILD
|
||||||
#elif defined(__BOOTBLOCK__)
|
#elif defined(__BOOTBLOCK__)
|
||||||
/* No LZMA in boot block. */
|
/* No LZMA in boot block. */
|
||||||
|
#elif defined(__VERSTAGE__)
|
||||||
|
/* No LZMA in verstage. */
|
||||||
#elif defined(__PRE_RAM__) && !CONFIG_COMPRESS_RAMSTAGE
|
#elif defined(__PRE_RAM__) && !CONFIG_COMPRESS_RAMSTAGE
|
||||||
/* No LZMA in romstage if ramstage is not compressed. */
|
/* No LZMA in romstage if ramstage is not compressed. */
|
||||||
#else
|
#else
|
||||||
|
Reference in New Issue
Block a user