1 /* SPDX-License-Identifier: GPL-2.0+ */
13 int fit_verify_header(unsigned char *ptr, int image_size,
14 struct image_tool_params *params);
16 int fit_check_image_types(uint8_t type);
19 * Map an FDT into memory, optionally increasing its size
21 * @cmdname: Tool name (for displaying with error messages)
22 * @fname: Filename containing FDT
23 * @size_inc: Amount to increase size by (0 = leave it alone)
24 * @blobp: Returns pointer to FDT blob
25 * @sbuf: File status information is stored here
26 * @delete_on_error: true to delete the file if we get an error
27 * @return 0 if OK, -1 on error.
29 int mmap_fdt(const char *cmdname, const char *fname, size_t size_inc,
30 void **blobp, struct stat *sbuf, bool delete_on_error);
32 #endif /* _FIT_COMMON_H_ */