aboutsummaryrefslogtreecommitdiff
path: root/applets.h
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2001-08-21 16:18:59 +0000
committerEric Andersen <andersen@codepoet.org>2001-08-21 16:18:59 +0000
commitf349e978c43b5061bf9dd3d05b5a30e2da039f60 (patch)
tree9b048f58d1c11600df69323327124425a2f78f63 /applets.h
parenta3e4f455ac0265d9f2477300054f504f563b0c58 (diff)
downloadbusybox-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.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/applets.h b/applets.h
index a26a06e21..41b783862 100644
--- a/applets.h
+++ b/applets.h
@@ -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
+