diff options
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 | |||