diff options
Diffstat (limited to 'util-linux/mkfs_minix.c')
-rw-r--r-- | util-linux/mkfs_minix.c | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/util-linux/mkfs_minix.c b/util-linux/mkfs_minix.c index aaabf8453..912246b93 100644 --- a/util-linux/mkfs_minix.c +++ b/util-linux/mkfs_minix.c | |||
@@ -62,6 +62,27 @@ | |||
62 | * Modified for BusyBox by Erik Andersen <andersen@debian.org> -- | 62 | * Modified for BusyBox by Erik Andersen <andersen@debian.org> -- |
63 | * removed getopt based parser and added a hand rolled one. | 63 | * removed getopt based parser and added a hand rolled one. |
64 | */ | 64 | */ |
65 | //config:config MKFS_MINIX | ||
66 | //config: bool "mkfs_minix" | ||
67 | //config: default y | ||
68 | //config: select PLATFORM_LINUX | ||
69 | //config: help | ||
70 | //config: The minix filesystem is a nice, small, compact, read-write filesystem | ||
71 | //config: with little overhead. If you wish to be able to create minix | ||
72 | //config: filesystems this utility will do the job for you. | ||
73 | //config: | ||
74 | //config:config FEATURE_MINIX2 | ||
75 | //config: bool "Support Minix fs v2 (fsck_minix/mkfs_minix)" | ||
76 | //config: default y | ||
77 | //config: depends on FSCK_MINIX || MKFS_MINIX | ||
78 | //config: help | ||
79 | //config: If you wish to be able to create version 2 minix filesystems, enable | ||
80 | //config: this. If you enabled 'mkfs_minix' then you almost certainly want to | ||
81 | //config: be using the version 2 filesystem support. | ||
82 | |||
83 | //applet:IF_MKFS_MINIX(APPLET_ODDNAME(mkfs.minix, mkfs_minix, BB_DIR_SBIN, BB_SUID_DROP, mkfs_minix)) | ||
84 | |||
85 | //kbuild:lib-$(CONFIG_MKFS_MINIX) += mkfs_minix.o | ||
65 | 86 | ||
66 | //usage:#define mkfs_minix_trivial_usage | 87 | //usage:#define mkfs_minix_trivial_usage |
67 | //usage: "[-c | -l FILE] [-nXX] [-iXX] BLOCKDEV [KBYTES]" | 88 | //usage: "[-c | -l FILE] [-nXX] [-iXX] BLOCKDEV [KBYTES]" |