summaryrefslogtreecommitdiffstats
path: root/util/cbfstool/cbfs_image.h
diff options
context:
space:
mode:
authorPatrick Georgi <pgeorgi@google.com>2015-08-11 15:10:02 +0200
committerPatrick Georgi <pgeorgi@google.com>2015-08-13 16:08:30 +0200
commit11ee08f1f1505eca3589abefbf9484083cd05a19 (patch)
treee112c30c846a6c4eb92d5d1b6dd96e765c0d391d /util/cbfstool/cbfs_image.h
parente60b55a570a3bb9bf75bd344ef41460454abaef2 (diff)
downloadcoreboot-11ee08f1f1505eca3589abefbf9484083cd05a19.tar.gz
coreboot-11ee08f1f1505eca3589abefbf9484083cd05a19.tar.bz2
coreboot-11ee08f1f1505eca3589abefbf9484083cd05a19.zip
cbfstool: expose cbfs_calculate_file_header_size()
Headers vary in size soon, and more places need to be able to calculate their size. Change-Id: I30761bb9da0756418993dee21d8fa18cf3174c40 Signed-off-by: Patrick Georgi <pgeorgi@google.com> Reviewed-on: http://review.coreboot.org/11214 Tested-by: build bot (Jenkins) Reviewed-by: Aaron Durbin <adurbin@chromium.org>
Diffstat (limited to 'util/cbfstool/cbfs_image.h')
-rw-r--r--util/cbfstool/cbfs_image.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/util/cbfstool/cbfs_image.h b/util/cbfstool/cbfs_image.h
index 907be613d075..ecd7db7028bc 100644
--- a/util/cbfstool/cbfs_image.h
+++ b/util/cbfstool/cbfs_image.h
@@ -164,4 +164,6 @@ int cbfs_print_entry_info(struct cbfs_image *image, struct cbfs_file *entry,
int cbfs_merge_empty_entry(struct cbfs_image *image, struct cbfs_file *entry,
void *arg);
+/* Returns the size of a cbfs file header with no extensions */
+size_t cbfs_calculate_file_header_size(const char *name);
#endif