aboutsummaryrefslogtreecommitdiff
path: root/util-linux/volume_id/volume_id.c
diff options
context:
space:
mode:
authorNorbert Lange <nolange79@gmail.com>2020-07-13 17:22:27 +0200
committerDenys Vlasenko <vda.linux@googlemail.com>2020-11-18 19:19:23 +0100
commitc20e42e320edcd3612cfdb71c8bea5277ebf9be2 (patch)
treeca42b51e19a840cee8b88c542370ffffbd7cd992 /util-linux/volume_id/volume_id.c
parentbd46f64dcb2cf4f37c2cbfeb808f4e380d9d5931 (diff)
downloadbusybox-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.c')
-rw-r--r--util-linux/volume_id/volume_id.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/util-linux/volume_id/volume_id.c b/util-linux/volume_id/volume_id.c
index c3f07a741..99150a5b7 100644
--- a/util-linux/volume_id/volume_id.c
+++ b/util-linux/volume_id/volume_id.c
@@ -106,6 +106,9 @@ static const probe_fptr fs1[] = {
#if ENABLE_FEATURE_VOLUMEID_SQUASHFS
volume_id_probe_squashfs,
#endif
+#if ENABLE_FEATURE_VOLUMEID_EROFS
+ volume_id_probe_erofs,
+#endif
#if ENABLE_FEATURE_VOLUMEID_XFS
volume_id_probe_xfs,
#endif