aboutsummaryrefslogtreecommitdiff
path: root/util-linux/blkid.c
diff options
context:
space:
mode:
Diffstat (limited to 'util-linux/blkid.c')
-rw-r--r--util-linux/blkid.c20
1 files changed, 20 insertions, 0 deletions
diff --git a/util-linux/blkid.c b/util-linux/blkid.c
index 1bbc80311..b6f33b513 100644
--- a/util-linux/blkid.c
+++ b/util-linux/blkid.c
@@ -6,6 +6,26 @@
6 * 6 *
7 * Licensed under GPLv2, see file LICENSE in this source tree. 7 * Licensed under GPLv2, see file LICENSE in this source tree.
8 */ 8 */
9//config:config BLKID
10//config: bool "blkid"
11//config: default y
12//config: select PLATFORM_LINUX
13//config: select VOLUMEID
14//config: help
15//config: Lists labels and UUIDs of all filesystems.
16//config: WARNING:
17//config: With all submodules selected, it will add ~8k to busybox.
18//config:
19//config:config FEATURE_BLKID_TYPE
20//config: bool "Print filesystem type"
21//config: default n
22//config: depends on BLKID
23//config: help
24//config: Show TYPE="filesystem type"
25
26//applet:IF_BLKID(APPLET(blkid, BB_DIR_SBIN, BB_SUID_DROP))
27
28//kbuild:lib-$(CONFIG_BLKID) += blkid.o
9 29
10//usage:#define blkid_trivial_usage 30//usage:#define blkid_trivial_usage
11//usage: "[BLOCKDEV]..." 31//usage: "[BLOCKDEV]..."