diff options
author | Tom Rini <trini@konsulko.com> | 2019-05-19 09:36:48 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2019-05-19 09:36:48 -0400 |
commit | d3d212b6240f75006c18e4c59b3b28d81eedb7d3 (patch) | |
tree | 106781344a5074a0e1cc26e8e371016cef0d0570 /tools/fit_common.h | |
parent | 98b3156b0df4b0df9cb3a0bbfc240d0c4edd2638 (diff) | |
parent | 612f6b223d2cb03ae0170d3eadcb78f7b473ecfb (diff) |
Merge branch '2019-05-19-master-imports'
- Convert SYS_[DI]CACHE_OFF to Kconfig, introduce SPL variant.
- Various bcm96* fixes.
- Import include/android_bootloader_message.h from AOSP
- Assorted other small fixes.
Diffstat (limited to 'tools/fit_common.h')
-rw-r--r-- | tools/fit_common.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tools/fit_common.h b/tools/fit_common.h index 9e09624f64..1e81d4c68b 100644 --- a/tools/fit_common.h +++ b/tools/fit_common.h @@ -32,9 +32,11 @@ int fit_check_image_types(uint8_t type); * @blobp: Returns pointer to FDT blob * @sbuf: File status information is stored here * @delete_on_error: true to delete the file if we get an error + * @read_only: true to open in read-only mode * @return 0 if OK, -1 on error. */ int mmap_fdt(const char *cmdname, const char *fname, size_t size_inc, - void **blobp, struct stat *sbuf, bool delete_on_error); + void **blobp, struct stat *sbuf, bool delete_on_error, + bool read_only); #endif /* _FIT_COMMON_H_ */ |