cbfstool: Make update-fit action work on new-style images
Because new images place the bootblock in a separate region from the primary CBFS, performing an update-fit operation requires reading an additional section and choosing a different destination for the write based on the image type. Since other actions are not affected by these requirements, the logic for the optional read and all writing is implemented in the cbfs_update_fit() function itself, rather than relying on the main() function for writing as the other actions do. Change-Id: I2024c59715120ecc3b9b158e007ebce75acff023 Signed-off-by: Sol Boucher <solb@chromium.org> Reviewed-on: http://review.coreboot.org/10137 Tested-by: build bot (Jenkins) Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
This commit is contained in:
committed by
Stefan Reinauer
parent
8307050412
commit
32532ac92d
@@ -20,6 +20,19 @@
|
||||
#ifndef __CBFSTOOL_FIT_H
|
||||
#define __CBFSTOOL_FIT_H
|
||||
|
||||
int fit_update_table(struct cbfs_image *image,
|
||||
int empty_entries, const char *microcode_blob_name);
|
||||
#include "cbfs_image.h"
|
||||
#include "common.h"
|
||||
|
||||
/*
|
||||
* Converts between offsets from the start of the specified image region and
|
||||
* "top-aligned" offsets from the top of the entire flash image. Should work in
|
||||
* both directions: accepts either type of offset and produces the other type.
|
||||
* The implementation must have some notion of the flash image's total size.
|
||||
*/
|
||||
typedef unsigned (*fit_offset_converter_t)(const struct buffer *region,
|
||||
unsigned offset);
|
||||
|
||||
int fit_update_table(struct buffer *bootblock, struct cbfs_image *image,
|
||||
const char *microcode_blob_name, int empty_entries,
|
||||
fit_offset_converter_t offset_fn);
|
||||
#endif
|
||||
|
Reference in New Issue
Block a user