diff options
author | andersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2001-08-21 16:18:59 +0000 |
---|---|---|
committer | andersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2001-08-21 16:18:59 +0000 |
commit | 6e33165982a8ba691371185cb898643ec9e78ba6 (patch) | |
tree | 9b048f58d1c11600df69323327124425a2f78f63 /applets.h | |
parent | f55eed1a6ff910575e85e3bfa9cbae62039f8901 (diff) | |
download | busybox-w32-6e33165982a8ba691371185cb898643ec9e78ba6.tar.gz busybox-w32-6e33165982a8ba691371185cb898643ec9e78ba6.tar.bz2 busybox-w32-6e33165982a8ba691371185cb898643ec9e78ba6.zip |
Initial merge of all tinylogin applets that do not require crypt.
There is some optimization that can be done to better use libbb in
these applets. There is also redundancy between stty and getty which
could be eliminated.
-Erik
git-svn-id: svn://busybox.net/trunk/busybox@3318 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'applets.h')
-rw-r--r-- | applets.h | 16 |
1 files changed, 16 insertions, 0 deletions
@@ -46,6 +46,12 @@ | |||
46 | #ifdef BB_TEST | 46 | #ifdef BB_TEST |
47 | APPLET_NOUSAGE("[", test_main, _BB_DIR_USR_BIN) | 47 | APPLET_NOUSAGE("[", test_main, _BB_DIR_USR_BIN) |
48 | #endif | 48 | #endif |
49 | #ifdef BB_ADDGROUP | ||
50 | APPLET(addgroup, addgroup_main, _BB_DIR_BIN) | ||
51 | #endif | ||
52 | #ifdef BB_ADDUSER | ||
53 | APPLET(adduser, adduser_main, _BB_DIR_BIN) | ||
54 | #endif | ||
49 | #ifdef BB_ADJTIMEX | 55 | #ifdef BB_ADJTIMEX |
50 | APPLET(adjtimex, adjtimex_main, _BB_DIR_SBIN) | 56 | APPLET(adjtimex, adjtimex_main, _BB_DIR_SBIN) |
51 | #endif | 57 | #endif |
@@ -104,6 +110,12 @@ | |||
104 | #ifdef BB_DEALLOCVT | 110 | #ifdef BB_DEALLOCVT |
105 | APPLET(deallocvt, deallocvt_main, _BB_DIR_USR_BIN) | 111 | APPLET(deallocvt, deallocvt_main, _BB_DIR_USR_BIN) |
106 | #endif | 112 | #endif |
113 | #ifdef BB_DELGROUP | ||
114 | APPLET(delgroup, delgroup_main, _BB_DIR_BIN) | ||
115 | #endif | ||
116 | #ifdef BB_DELUSER | ||
117 | APPLET(deluser, deluser_main, _BB_DIR_BIN) | ||
118 | #endif | ||
107 | #ifdef BB_DF | 119 | #ifdef BB_DF |
108 | APPLET(df, df_main, _BB_DIR_BIN) | 120 | APPLET(df, df_main, _BB_DIR_BIN) |
109 | #endif | 121 | #endif |
@@ -167,6 +179,9 @@ | |||
167 | #ifdef BB_GETOPT | 179 | #ifdef BB_GETOPT |
168 | APPLET(getopt, getopt_main, _BB_DIR_BIN) | 180 | APPLET(getopt, getopt_main, _BB_DIR_BIN) |
169 | #endif | 181 | #endif |
182 | #ifdef BB_GETTY | ||
183 | APPLET(getty, getty_main, _BB_DIR_SBIN) | ||
184 | #endif | ||
170 | #ifdef BB_GREP | 185 | #ifdef BB_GREP |
171 | APPLET(grep, grep_main, _BB_DIR_BIN) | 186 | APPLET(grep, grep_main, _BB_DIR_BIN) |
172 | #endif | 187 | #endif |
@@ -479,3 +494,4 @@ | |||
479 | }; | 494 | }; |
480 | 495 | ||
481 | #endif | 496 | #endif |
497 | |||