From f107538e33c880cb52ee131a527149cce9f936ee Mon Sep 17 00:00:00 2001 From: Patrick Georgi Date: Sat, 18 Jul 2009 14:20:39 +0000 Subject: strdup the input of dirname, as dirname is free (according to the spec) to change the string in-situ, even if glibc doesn't do it. This avoids errors on Mac OS and Solaris. Kill nrv2b support in CBFS (we have lzma), slightly improve debug output in CBFS, properly declare all functions of CBFS in the header. Signed-off-by: Patrick Georgi Acked-by: Uwe Hermann git-svn-id: svn://svn.coreboot.org/coreboot/trunk@4436 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1 --- src/include/cbfs.h | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'src/include') diff --git a/src/include/cbfs.h b/src/include/cbfs.h index b11c3b316d..bca089a73b 100644 --- a/src/include/cbfs.h +++ b/src/include/cbfs.h @@ -57,7 +57,6 @@ #define CBFS_COMPRESS_NONE 0 #define CBFS_COMPRESS_LZMA 1 -#define CBFS_COMPRESS_NRV2B 2 /** These are standard component types for well known components (i.e - those that coreboot needs to consume. @@ -165,8 +164,12 @@ int cbfs_execute_stage(const char *name); void * cbfs_get_file(const char *name); void *cbfs_load_optionrom(u16 vendor, u16 device, void * dest); int run_address(void *f); - +int cbfs_decompress(int algo, void *src, void *dst, int len); struct cbfs_stage *cbfs_find_file(const char *name, int type); +int cbfs_check_magic(struct cbfs_file *file); +struct cbfs_header *cbfs_master_header(void); +struct cbfs_file *cbfs_find(const char *name); +void cbfs_and_run_core(char* filename, unsigned int ebp); #endif -- cgit v1.2.3