diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2016-11-16 16:18:50 +0100 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2016-11-16 16:18:50 +0100 |
commit | 10880cc20ff424c5443a8fc6b6afa5c59c5ef602 (patch) | |
tree | 5f36a6d8872bdeb2e1955a181286ba0483c3160d /util-linux | |
parent | 0581a2f3041184db1af997305908e211d3e4e34f (diff) |
Make mkfs.vfat and mkdosfs individually selectable
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'util-linux')
-rw-r--r-- | util-linux/Config.src | 7 | ||||
-rw-r--r-- | util-linux/Kbuild.src | 1 | ||||
-rw-r--r-- | util-linux/mkfs_vfat.c | 19 |
3 files changed, 19 insertions, 8 deletions
diff --git a/util-linux/Config.src b/util-linux/Config.src index 72d3be1f8..9bef0d532 100644 --- a/util-linux/Config.src +++ b/util-linux/Config.src @@ -272,13 +272,6 @@ config MKFS_REISER Utility to create ReiserFS filesystems. Note: this applet needs a lot of testing and polishing. -config MKFS_VFAT - bool "mkfs_vfat" - default y - select PLATFORM_LINUX - help - Utility to create FAT32 filesystems. - config GETOPT bool "getopt" default y diff --git a/util-linux/Kbuild.src b/util-linux/Kbuild.src index 41cf77809..dfd50afa2 100644 --- a/util-linux/Kbuild.src +++ b/util-linux/Kbuild.src @@ -28,7 +28,6 @@ lib-$(CONFIG_LSPCI) += lspci.o lib-$(CONFIG_LSUSB) += lsusb.o lib-$(CONFIG_MKFS_MINIX) += mkfs_minix.o lib-$(CONFIG_MKFS_REISER) += mkfs_reiser.o -lib-$(CONFIG_MKFS_VFAT) += mkfs_vfat.o lib-$(CONFIG_MKSWAP) += mkswap.o lib-$(CONFIG_MORE) += more.o lib-$(CONFIG_MOUNT) += mount.o diff --git a/util-linux/mkfs_vfat.c b/util-linux/mkfs_vfat.c index d53c751eb..ab70853a1 100644 --- a/util-linux/mkfs_vfat.c +++ b/util-linux/mkfs_vfat.c @@ -7,6 +7,25 @@ * * Licensed under GPLv2, see file LICENSE in this source tree. */ +//config:config MKDOSFS +//config: bool "mkdosfs" +//config: default y +//config: select PLATFORM_LINUX +//config: help +//config: Utility to create FAT32 filesystems. +//config: +//config:config MKFS_VFAT +//config: bool "mkfs.vfat" +//config: default y +//config: select PLATFORM_LINUX +//config: help +//config: Alias to "mkdosfs". + +//applet:IF_MKDOSFS(APPLET_ODDNAME(mkdosfs, mkfs_vfat, BB_DIR_SBIN, BB_SUID_DROP, mkfs_vfat)) +//applet:IF_MKFS_VFAT(APPLET_ODDNAME(mkfs.vfat, mkfs_vfat, BB_DIR_SBIN, BB_SUID_DROP, mkfs_vfat)) + +//kbuild:lib-$(CONFIG_MKDOSFS) += mkfs_vfat.o +//kbuild:lib-$(CONFIG_MKFS_VFAT) += mkfs_vfat.o //usage:#define mkfs_vfat_trivial_usage //usage: "[-v] [-n LABEL] BLOCKDEV [KBYTES]" |