cbfstool: allow passing a precalculated header size into cbfs_add_entry()
This is in preparation of creating the cbfs_file header much earlier in the process. For now, size is enough because lots of things need to move before it makes sense to deal with cbfs_file at a higher level. Change-Id: I47589247c3011cb828170eaa10ef4a1e0f85ab84 Signed-off-by: Patrick Georgi <pgeorgi@google.com> Reviewed-on: http://review.coreboot.org/11213 Tested-by: build bot (Jenkins) Reviewed-by: Aaron Durbin <adurbin@chromium.org>
This commit is contained in:
@@ -150,8 +150,8 @@ static int cbfs_add_integer_component(const char *name,
|
||||
offset = convert_to_from_top_aligned(param.image_region,
|
||||
-offset);
|
||||
|
||||
if (cbfs_add_entry(&image, &buffer, name, CBFS_COMPONENT_RAW, offset) !=
|
||||
0) {
|
||||
if (cbfs_add_entry(&image, &buffer, name, CBFS_COMPONENT_RAW,
|
||||
offset, 0) != 0) {
|
||||
ERROR("Failed to add %llu into ROM image as '%s'.\n",
|
||||
(long long unsigned)u64val, name);
|
||||
goto done;
|
||||
@@ -211,7 +211,7 @@ static int cbfs_add_component(const char *filename,
|
||||
offset = convert_to_from_top_aligned(param.image_region,
|
||||
-offset);
|
||||
|
||||
if (cbfs_add_entry(&image, &buffer, name, type, offset) != 0) {
|
||||
if (cbfs_add_entry(&image, &buffer, name, type, offset, 0) != 0) {
|
||||
ERROR("Failed to add '%s' into ROM image.\n", filename);
|
||||
buffer_delete(&buffer);
|
||||
return 1;
|
||||
|
Reference in New Issue
Block a user