Patrick Georgi ([email protected]) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/158
-gerrit commit 53f8dcfa8f80cc9d1b5e27dd7eae93e9ab17446a Author: Patrick Georgi <[email protected]> Date: Thu Aug 18 11:36:03 2011 +0200 libpayload: export get_cbfs_header() Keep in sync with coreboot's version. Change-Id: I8a253446bd3b2ce9d05c6076a3f49f0260ecd5f9 Signed-off-by: Patrick Georgi <[email protected]> --- payloads/libpayload/include/cbfs_core.h | 1 + payloads/libpayload/libcbfs/cbfs_core.c | 2 +- 2 files changed, 2 insertions(+), 1 deletions(-) diff --git a/payloads/libpayload/include/cbfs_core.h b/payloads/libpayload/include/cbfs_core.h index fbe0081..70368f8 100644 --- a/payloads/libpayload/include/cbfs_core.h +++ b/payloads/libpayload/include/cbfs_core.h @@ -176,5 +176,6 @@ void *cbfs_find_file(const char *name, int type); /* returns 0 on success, -1 on failure */ int cbfs_decompress(int algo, void *src, void *dst, int len); +struct cbfs_header *get_cbfs_header(void); #endif diff --git a/payloads/libpayload/libcbfs/cbfs_core.c b/payloads/libpayload/libcbfs/cbfs_core.c index 52ba58d..596fa3f 100644 --- a/payloads/libpayload/libcbfs/cbfs_core.c +++ b/payloads/libpayload/libcbfs/cbfs_core.c @@ -55,7 +55,7 @@ /* returns pointer to master header or 0xffffffff if not found */ -static struct cbfs_header *get_cbfs_header(void) +struct cbfs_header *get_cbfs_header(void) { struct cbfs_header *header; -- coreboot mailing list: [email protected] http://www.coreboot.org/mailman/listinfo/coreboot

