diff options
Diffstat (limited to 'coreutils/mkfifo.c')
-rw-r--r-- | coreutils/mkfifo.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/coreutils/mkfifo.c b/coreutils/mkfifo.c index ef58325b3..66509a9c0 100644 --- a/coreutils/mkfifo.c +++ b/coreutils/mkfifo.c | |||
@@ -6,6 +6,16 @@ | |||
6 | * | 6 | * |
7 | * Licensed under GPLv2 or later, see file LICENSE in this source tree. | 7 | * Licensed under GPLv2 or later, see file LICENSE in this source tree. |
8 | */ | 8 | */ |
9 | //config:config MKFIFO | ||
10 | //config: bool "mkfifo" | ||
11 | //config: default y | ||
12 | //config: help | ||
13 | //config: mkfifo is used to create FIFOs (named pipes). | ||
14 | //config: The 'mknod' program can also create FIFOs. | ||
15 | |||
16 | //applet:IF_MKFIFO(APPLET_NOEXEC(mkfifo, mkfifo, BB_DIR_USR_BIN, BB_SUID_DROP, mkfifo)) | ||
17 | |||
18 | //kbuild:lib-$(CONFIG_MKFIFO) += mkfifo.o | ||
9 | 19 | ||
10 | /* BB_AUDIT SUSv3 compliant */ | 20 | /* BB_AUDIT SUSv3 compliant */ |
11 | /* http://www.opengroup.org/onlinepubs/007904975/utilities/mkfifo.html */ | 21 | /* http://www.opengroup.org/onlinepubs/007904975/utilities/mkfifo.html */ |