mirror of
https://github.com/Telecominfraproject/OpenCellular.git
synced 2025-12-27 02:04:55 +00:00
Rename last_bl_blk to last_blk
Also update the next_bct_blk. Then we have the correct pointer to the next block for the next image write. Signed-off-by: Vince Hsu <vinceh@nvidia.com> Acked-by: Allen Martin <amartin@nvidia.com>
This commit is contained in:
@@ -95,7 +95,7 @@ typedef struct build_image_context_rec
|
||||
u_int8_t *bct;
|
||||
|
||||
char *bct_filename;
|
||||
u_int32_t last_bl_blk;
|
||||
u_int32_t last_blk;
|
||||
u_int32_t bct_size; /* The BCT file size */
|
||||
u_int32_t boot_data_version; /* The boot data version of BCT */
|
||||
u_int8_t bct_init; /* The flag for the memory allocation of bct */
|
||||
|
||||
@@ -552,8 +552,9 @@ write_bootloaders(build_image_context *context)
|
||||
current_blk++;
|
||||
virtual_blk++;
|
||||
}
|
||||
context->last_bl_blk = current_blk;
|
||||
context->last_blk = current_blk;
|
||||
}
|
||||
context->next_bct_blk = context->last_blk + 1;
|
||||
free(buffer);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user