diff options
author | Drake Dowsett <dowsett@de.ibm.com> | 2006-11-06 16:54:10 +0100 |
---|---|---|
committer | Frank Haverkamp <haver@vnet.ibm.com> | 2006-11-06 16:54:10 +0100 |
commit | 31b015fc08a13a5b63245808f7d1a49eadd8193a (patch) | |
tree | 6ab4ce9a35f18e7b53c95c5cb8063cc55e54615d /ubi-utils/src/pfiflash.h | |
parent | 6918e0320c89bc892a6c5d2c6792e5d058e40a6e (diff) |
[MTD] UBI: pfiflash needs to flash raw sections and check CRC
Flashing of raw partitions should be possible now.
CRC checking of pfi files before flashing the content was added.
Signed-off-by: Frank Haverkamp <haver@vnet.ibm.com>
Diffstat (limited to 'ubi-utils/src/pfiflash.h')
-rw-r--r-- | ubi-utils/src/pfiflash.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/ubi-utils/src/pfiflash.h b/ubi-utils/src/pfiflash.h index fc2eede..a063e7f 100644 --- a/ubi-utils/src/pfiflash.h +++ b/ubi-utils/src/pfiflash.h @@ -49,6 +49,19 @@ typedef enum pdd_handling_t * @param complete [0|1] Do a complete system update. * @param seqnum Index in a redundant group. * @param pdd_handling The PDD handling algorithm. + * @param rawdev Device to use for raw flashing + * @param err_buf An error buffer. + * @param err_buf_size Size of the error buffer. + */ +int pfiflash_with_raw(FILE* pfi, int complete, int seqnum, + pdd_handling_t pdd_handling, const char* rawdev, + char *err_buf, size_t err_buf_size); + +/** + * @brief Flashes a PFI file to UBI Device 0. + * @param complete [0|1] Do a complete system update. + * @param seqnum Index in a redundant group. + * @param pdd_handling The PDD handling algorithm. * @param err_buf An error buffer. * @param err_buf_size Size of the error buffer. */ |