diff options
author | Eric Andersen | 2001-08-21 16:18:59 +0000 |
---|---|---|
committer | Eric Andersen | 2001-08-21 16:18:59 +0000 |
commit | f349e978c43b5061bf9dd3d05b5a30e2da039f60 (patch) | |
tree | 9b048f58d1c11600df69323327124425a2f78f63 /applets.h | |
parent | a3e4f455ac0265d9f2477300054f504f563b0c58 (diff) | |
download | busybox-f349e978c43b5061bf9dd3d05b5a30e2da039f60.zip busybox-f349e978c43b5061bf9dd3d05b5a30e2da039f60.tar.gz |
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
Diffstat (limited to 'applets.h')
-rw-r--r-- | applets.h | 16 |
1 files changed, 16 insertions, 0 deletions
@@ -46,6 +46,12 @@ #ifdef BB_TEST APPLET_NOUSAGE("[", test_main, _BB_DIR_USR_BIN) #endif +#ifdef BB_ADDGROUP + APPLET(addgroup, addgroup_main, _BB_DIR_BIN) +#endif +#ifdef BB_ADDUSER + APPLET(adduser, adduser_main, _BB_DIR_BIN) +#endif #ifdef BB_ADJTIMEX APPLET(adjtimex, adjtimex_main, _BB_DIR_SBIN) #endif @@ -104,6 +110,12 @@ #ifdef BB_DEALLOCVT APPLET(deallocvt, deallocvt_main, _BB_DIR_USR_BIN) #endif +#ifdef BB_DELGROUP + APPLET(delgroup, delgroup_main, _BB_DIR_BIN) +#endif +#ifdef BB_DELUSER + APPLET(deluser, deluser_main, _BB_DIR_BIN) +#endif #ifdef BB_DF APPLET(df, df_main, _BB_DIR_BIN) #endif @@ -167,6 +179,9 @@ #ifdef BB_GETOPT APPLET(getopt, getopt_main, _BB_DIR_BIN) #endif +#ifdef BB_GETTY + APPLET(getty, getty_main, _BB_DIR_SBIN) +#endif #ifdef BB_GREP APPLET(grep, grep_main, _BB_DIR_BIN) #endif @@ -479,3 +494,4 @@ }; #endif + |