diff options
author | Alexandru Gagniuc <mr.nuke.me@gmail.com> | 2014-02-02 21:48:18 -0600 |
---|---|---|
committer | Ronald G. Minnich <rminnich@gmail.com> | 2014-02-03 17:02:38 +0100 |
commit | bc06691a3bcb799954074bbff8846db5fd31afe6 (patch) | |
tree | 820716780bf65207b4603a713e3c375ce232c2e5 /util/cbfstool/common.h | |
parent | ebe3b3cfe212a2e985e12f1ab93bdef4487733f5 (diff) | |
download | coreboot-bc06691a3bcb799954074bbff8846db5fd31afe6.tar.xz |
cbfstool: remove unused function create_cbfs_image()
It's not used anymore. Instead, we have the better replacements
cbfs_image_create() and cbfs_image_from_file().
Change-Id: I7835f339805f6b41527fe3550028b29f79e35d13
Signed-off-by: Alexandru Gagniuc <mr.nuke.me@gmail.com>
Reviewed-on: http://review.coreboot.org/5103
Tested-by: build bot (Jenkins)
Reviewed-by: Ronald G. Minnich <rminnich@gmail.com>
Diffstat (limited to 'util/cbfstool/common.h')
-rw-r--r-- | util/cbfstool/common.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/util/cbfstool/common.h b/util/cbfstool/common.h index e49a3f6535..e41618f1cd 100644 --- a/util/cbfstool/common.h +++ b/util/cbfstool/common.h @@ -117,9 +117,6 @@ int parse_elf_to_stage(const struct buffer *input, struct buffer *output, void *create_cbfs_file(const char *filename, void *data, uint32_t * datasize, uint32_t type, uint32_t * location); -int create_cbfs_image(const char *romfile, uint32_t romsize, - const char *bootblock, uint32_t align, uint32_t offs); - int add_file_to_cbfs(void *content, uint32_t contentsize, uint32_t location); int remove_file_from_cbfs(const char *filename); void print_cbfs_directory(const char *filename); |