From 5e9bc0daa41d84ce5de81c4a1665d65f51893c10 Mon Sep 17 00:00:00 2001 From: Quentin Schulz Date: Thu, 28 Jun 2018 09:43:42 +0200 Subject: 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 Reviewed-by: Boris Brezillon Signed-off-by: Quentin Schulz Signed-off-by: David Oberhollenzer --- include/libubi.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'include') diff --git a/include/libubi.h b/include/libubi.h index 4d6a7ee..46596a3 100644 --- a/include/libubi.h +++ b/include/libubi.h @@ -69,6 +69,7 @@ struct ubi_attach_request * @bytes: volume size in bytes * @vol_type: volume type (%UBI_DYNAMIC_VOLUME or %UBI_STATIC_VOLUME) * @name: volume name + * @flags: volume flags */ struct ubi_mkvol_request { @@ -77,6 +78,7 @@ struct ubi_mkvol_request long long bytes; int vol_type; const char *name; + uint8_t flags; }; /** -- cgit v1.2.3