Displaying 2 results from an estimated 2 matches for "cef3574".
2016 Jul 19
3
[PATCH 0/2] Small improvements to f2fs support
Hi,
easy series to improve the support for f2fs filesystems: while we
should be able to mount them already (if the used kernel has the
support for this filesystem), put in the appliance f2fs-tools, so we
can also create them.
Unfortunately, there isn't much in f2fs-tools, so all that can be done
is simply setting a different label only when creating a filesystem.
Thanks,
Pino Toscano (2):
2016 Jul 19
0
[PATCH 2/2] daemon: mkfs: allow setting labels for f2fs filesystems
Pass -L $LABEL to set the label of a f2fs filesystem when creating it.
---
daemon/mkfs.c | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/daemon/mkfs.c b/daemon/mkfs.c
index cef3574..a0617a0 100644
--- a/daemon/mkfs.c
+++ b/daemon/mkfs.c
@@ -228,6 +228,10 @@ do_mkfs (const char *fstype, const char *device, int blocksize,
ADD_ARG (argv, i, "-L");
ADD_ARG (argv, i, label);
}
+ else if (STREQ (fstype, "f2fs")) {
+ ADD_ARG (argv, i, &...