diff options
Diffstat (limited to 'include/applets.h')
-rw-r--r-- | include/applets.h | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/include/applets.h b/include/applets.h index a26a06e..41b7838 100644 --- a/include/applets.h +++ b/include/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 + |