summaryrefslogtreecommitdiff
path: root/tools/fiptool/fiptool.h
diff options
context:
space:
mode:
Diffstat (limited to 'tools/fiptool/fiptool.h')
-rw-r--r--tools/fiptool/fiptool.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/tools/fiptool/fiptool.h b/tools/fiptool/fiptool.h
index 6ace400d..be0c6f0d 100644
--- a/tools/fiptool/fiptool.h
+++ b/tools/fiptool/fiptool.h
@@ -34,6 +34,7 @@
#include <stddef.h>
#include <stdint.h>
+#include "firmware_image_package.h"
#include "uuid.h"
#define NELEM(x) (sizeof (x) / sizeof *(x))
@@ -61,10 +62,9 @@ typedef struct image_desc {
} image_desc_t;
typedef struct image {
- uuid_t uuid;
- size_t size;
- void *buffer;
- struct image *next;
+ struct fip_toc_entry toc_e;
+ void *buffer;
+ struct image *next;
} image_t;
typedef struct cmd {