diff options
author | Quentin Schulz <quentin.schulz@bootlin.com> | 2018-06-28 09:43:42 +0200 |
---|---|---|
committer | David Oberhollenzer <david.oberhollenzer@sigma-star.at> | 2018-06-28 10:21:51 +0200 |
commit | 5e9bc0daa41d84ce5de81c4a1665d65f51893c10 (patch) | |
tree | 86d8bb60ed23c9be73621bbdf03963773b0c9680 /lib/libubi.c | |
parent | 8ba21ab75b41a1f9a6e27eed3ea80c9829669c5a (diff) |
libubi: add volume flags to ubi_mkvol_request
Now that we have per-UBI volume flags (for instance for skipping CRC
check when opening it) from the Linux header, let's add it to the
ubi_mkvol_request in libubi and assign the flags to ubi_mkvol_req from
the Linux header from ubi_mkvol.
Suggested-by: Boris Brezillon <boris.brezillon@bootlin.com>
Reviewed-by: Boris Brezillon <boris.brezillon@bootlin.com>
Signed-off-by: Quentin Schulz <quentin.schulz@bootlin.com>
Signed-off-by: David Oberhollenzer <david.oberhollenzer@sigma-star.at>
Diffstat (limited to 'lib/libubi.c')
-rw-r--r-- | lib/libubi.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/libubi.c b/lib/libubi.c index 978b433..4322a19 100644 --- a/lib/libubi.c +++ b/lib/libubi.c @@ -1000,6 +1000,7 @@ int ubi_mkvol(libubi_t desc, const char *node, struct ubi_mkvol_request *req) r.alignment = req->alignment; r.bytes = req->bytes; r.vol_type = req->vol_type; + r.flags = req->flags; n = strlen(req->name); if (n > UBI_MAX_VOLUME_NAME) |