aboutsummaryrefslogtreecommitdiff
path: root/util-linux/mkfs_ext2.c
diff options
context:
space:
mode:
Diffstat (limited to 'util-linux/mkfs_ext2.c')
-rw-r--r--util-linux/mkfs_ext2.c20
1 files changed, 20 insertions, 0 deletions
diff --git a/util-linux/mkfs_ext2.c b/util-linux/mkfs_ext2.c
index 413e7aa15..5816a208e 100644
--- a/util-linux/mkfs_ext2.c
+++ b/util-linux/mkfs_ext2.c
@@ -7,6 +7,26 @@
7 * 7 *
8 * Licensed under GPLv2, see file LICENSE in this source tree. 8 * Licensed under GPLv2, see file LICENSE in this source tree.
9 */ 9 */
10//config:config MKE2FS
11//config: bool "mke2fs"
12//config: default y
13//config: select PLATFORM_LINUX
14//config: help
15//config: Utility to create EXT2 filesystems.
16//config:
17//config:config MKFS_EXT2
18//config: bool "mkfs.ext2"
19//config: default y
20//config: select PLATFORM_LINUX
21//config: help
22//config: Alias to "mke2fs".
23
24//applet:IF_MKE2FS(APPLET_ODDNAME(mke2fs, mkfs_ext2, BB_DIR_SBIN, BB_SUID_DROP, mkfs_ext2))
25//applet:IF_MKFS_EXT2(APPLET_ODDNAME(mkfs.ext2, mkfs_ext2, BB_DIR_SBIN, BB_SUID_DROP, mkfs_ext2))
26////////:IF_MKFS_EXT3(APPLET_ODDNAME(mkfs.ext3, mkfs_ext2, BB_DIR_SBIN, BB_SUID_DROP, mkfs_ext2))
27
28//kbuild:lib-$(CONFIG_MKE2FS) += mkfs_ext2.o
29//kbuild:lib-$(CONFIG_MKFS_EXT2) += mkfs_ext2.o
10 30
11//usage:#define mkfs_ext2_trivial_usage 31//usage:#define mkfs_ext2_trivial_usage
12//usage: "[-Fn] " 32//usage: "[-Fn] "