diff --git a/include/libfile.h b/include/libfile.h index fd2fade..2c5eef7 100644 --- a/include/libfile.h +++ b/include/libfile.h @@ -12,6 +12,7 @@ loff_t max_size); int write_file(const char *filename, const void *buf, size_t size); +int write_file_flash(const char *filename, const void *buf, size_t size); int copy_file(const char *src, const char *dst, int verbose); diff --git a/lib/libfile.c b/lib/libfile.c index b7db22d..d22519b 100644 --- a/lib/libfile.c +++ b/lib/libfile.c @@ -251,6 +251,39 @@ EXPORT_SYMBOL(write_file); /** + * write_file_flash - write a buffer to a file backed by flash + * @filename: The filename to write + * @size: The size of the buffer + * + * Functional this is identical to write_file but calls erase() before writing. + * + * Return: 0 for success or negative error value + */ +int write_file_flash(const char *filename, const void *buf, size_t size) +{ + int fd, ret; + + fd = open(filename, O_WRONLY); + if (fd < 0) + return fd; + + ret = erase(fd, size, 0); + if (ret < 0) + goto out_close; + + ret = write_full(fd, buf, size); + +out_close: + close(fd); + + if (ret < 0) + return ret; + + return 0; +} +EXPORT_SYMBOL(write_file_flash); + +/** * copy_file - Copy a file * @src: The source filename * @dst: The destination filename