aboutsummaryrefslogtreecommitdiff
path: root/console-tools/setlogcons.c
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2016-11-23 10:39:27 +0100
committerDenys Vlasenko <vda.linux@googlemail.com>2016-11-23 10:39:27 +0100
commit6d9329935c0621ddc056aee0d30cec52a24da499 (patch)
tree8b78faf3893c364337b138a9e8c20bfa4a286273 /console-tools/setlogcons.c
parentc19f7584e14522043da141189711c8db72dfbc90 (diff)
downloadbusybox-w32-6d9329935c0621ddc056aee0d30cec52a24da499.tar.gz
busybox-w32-6d9329935c0621ddc056aee0d30cec52a24da499.tar.bz2
busybox-w32-6d9329935c0621ddc056aee0d30cec52a24da499.zip
Convert all console-tools/* applets to "new style" applet definitions
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'console-tools/setlogcons.c')
-rw-r--r--console-tools/setlogcons.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/console-tools/setlogcons.c b/console-tools/setlogcons.c
index 2a11da329..2ea36f039 100644
--- a/console-tools/setlogcons.c
+++ b/console-tools/setlogcons.c
@@ -8,6 +8,16 @@
8 * 8 *
9 * Licensed under GPLv2 or later, see file LICENSE in this source tree. 9 * Licensed under GPLv2 or later, see file LICENSE in this source tree.
10 */ 10 */
11//config:config SETLOGCONS
12//config: bool "setlogcons"
13//config: default y
14//config: select PLATFORM_LINUX
15//config: help
16//config: This program redirects the output console of kernel messages.
17
18//applet:IF_SETLOGCONS(APPLET(setlogcons, BB_DIR_USR_SBIN, BB_SUID_DROP))
19
20//kbuild:lib-$(CONFIG_SETLOGCONS) += setlogcons.o
11 21
12//usage:#define setlogcons_trivial_usage 22//usage:#define setlogcons_trivial_usage
13//usage: "[N]" 23//usage: "[N]"