diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2016-11-23 14:46:56 +0100 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2016-11-23 14:46:56 +0100 |
commit | af3f42011628585cd5c8f5c1fd4b43f2e370a23d (patch) | |
tree | 125ee16d5080008fcf459ad55d91af1dcd488ef9 /coreutils/stty.c | |
parent | 5b966c6180c139fba6846d632fd9bc0c34a8e1bc (diff) | |
download | busybox-w32-af3f42011628585cd5c8f5c1fd4b43f2e370a23d.tar.gz busybox-w32-af3f42011628585cd5c8f5c1fd4b43f2e370a23d.tar.bz2 busybox-w32-af3f42011628585cd5c8f5c1fd4b43f2e370a23d.zip |
Convert all coreutils/* applets to "new style" applet definitions
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'coreutils/stty.c')
-rw-r--r-- | coreutils/stty.c | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/coreutils/stty.c b/coreutils/stty.c index 52967ea8f..e818d579c 100644 --- a/coreutils/stty.c +++ b/coreutils/stty.c | |||
@@ -18,8 +18,16 @@ | |||
18 | David MacKenzie <djm@gnu.ai.mit.edu> | 18 | David MacKenzie <djm@gnu.ai.mit.edu> |
19 | 19 | ||
20 | Special for busybox ported by Vladimir Oleynik <dzo@simtreas.ru> 2001 | 20 | Special for busybox ported by Vladimir Oleynik <dzo@simtreas.ru> 2001 |
21 | */ | ||
22 | //config:config STTY | ||
23 | //config: bool "stty" | ||
24 | //config: default y | ||
25 | //config: help | ||
26 | //config: stty is used to change and print terminal line settings. | ||
27 | |||
28 | //applet:IF_STTY(APPLET(stty, BB_DIR_BIN, BB_SUID_DROP)) | ||
21 | 29 | ||
22 | */ | 30 | //kbuild:lib-$(CONFIG_STTY) += stty.o |
23 | 31 | ||
24 | //usage:#define stty_trivial_usage | 32 | //usage:#define stty_trivial_usage |
25 | //usage: "[-a|g] [-F DEVICE] [SETTING]..." | 33 | //usage: "[-a|g] [-F DEVICE] [SETTING]..." |