summaryrefslogtreecommitdiff
path: root/utils/imxtools/sbtools/sb.h
diff options
context:
space:
mode:
Diffstat (limited to 'utils/imxtools/sbtools/sb.h')
-rw-r--r--utils/imxtools/sbtools/sb.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/utils/imxtools/sbtools/sb.h b/utils/imxtools/sbtools/sb.h
index cf826362de..9ab7fe7aba 100644
--- a/utils/imxtools/sbtools/sb.h
+++ b/utils/imxtools/sbtools/sb.h
@@ -195,7 +195,8 @@ struct sb_section_t
195 struct sb_inst_t *insts; 195 struct sb_inst_t *insts;
196 /* for production use */ 196 /* for production use */
197 uint32_t file_offset; /* in blocks */ 197 uint32_t file_offset; /* in blocks */
198 uint32_t sec_size; /* in blocks */ 198 uint32_t sec_size; /* in blocks, without padding */
199 uint32_t pad_size; /* padding size after the section until next section */
199}; 200};
200 201
201struct sb_file_t 202struct sb_file_t
@@ -217,6 +218,7 @@ struct sb_file_t
217 struct sb_version_t product_ver; 218 struct sb_version_t product_ver;
218 struct sb_version_t component_ver; 219 struct sb_version_t component_ver;
219 /* for production use */ 220 /* for production use */
221 int first_boot_sec; /* index in sections[] */
220 uint32_t image_size; /* in blocks */ 222 uint32_t image_size; /* in blocks */
221}; 223};
222 224