diff options
author | Norbert Lange | 2020-07-13 17:22:27 +0200 |
---|---|---|
committer | Denys Vlasenko | 2020-11-18 19:19:23 +0100 |
commit | c20e42e320edcd3612cfdb71c8bea5277ebf9be2 (patch) | |
tree | ca42b51e19a840cee8b88c542370ffffbd7cd992 /util-linux/volume_id/volume_id_internal.h | |
parent | bd46f64dcb2cf4f37c2cbfeb808f4e380d9d5931 (diff) | |
download | busybox-c20e42e320edcd3612cfdb71c8bea5277ebf9be2.zip busybox-c20e42e320edcd3612cfdb71c8bea5277ebf9be2.tar.gz |
util-linux: support erofs filesystem
Add erofs to the known volume_ids.
function old new delta
volume_id_probe_erofs - 89 +89
fs1 24 28 +4
------------------------------------------------------------------------------
(add/remove: 2/0 grow/shrink: 1/0 up/down: 93/0) Total: 93 bytes
Signed-off-by: Norbert Lange <nolange79@gmail.com>
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'util-linux/volume_id/volume_id_internal.h')
-rw-r--r-- | util-linux/volume_id/volume_id_internal.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/util-linux/volume_id/volume_id_internal.h b/util-linux/volume_id/volume_id_internal.h index ada1833..609beb8 100644 --- a/util-linux/volume_id/volume_id_internal.h +++ b/util-linux/volume_id/volume_id_internal.h @@ -215,6 +215,8 @@ int FAST_FUNC volume_id_probe_romfs(struct volume_id *id /*,uint64_t off*/); int FAST_FUNC volume_id_probe_squashfs(struct volume_id *id /*,uint64_t off*/); +int FAST_FUNC volume_id_probe_erofs(struct volume_id *id /*,uint64_t off*/); + int FAST_FUNC volume_id_probe_sysv(struct volume_id *id /*,uint64_t off*/); int FAST_FUNC volume_id_probe_udf(struct volume_id *id /*,uint64_t off*/); |