diff options
author | Mike Frysinger | 2005-04-21 23:29:24 +0000 |
---|---|---|
committer | Mike Frysinger | 2005-04-21 23:29:24 +0000 |
commit | 95d3c4503fa8c4f4289b81f50f52657e112e0234 (patch) | |
tree | 383ba6ed6c937f8dd6a6160206d937e146b50dd7 /include/applets.h | |
parent | 4a2117027f12c43b93e4221f636074c881206a2d (diff) | |
download | busybox-95d3c4503fa8c4f4289b81f50f52657e112e0234.zip busybox-95d3c4503fa8c4f4289b81f50f52657e112e0234.tar.gz |
printenv / sum defines
Diffstat (limited to 'include/applets.h')
-rw-r--r-- | include/applets.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/include/applets.h b/include/applets.h index e5b19e0..462d918 100644 --- a/include/applets.h +++ b/include/applets.h @@ -452,6 +452,9 @@ #ifdef CONFIG_POWEROFF APPLET(poweroff, poweroff_main, _BB_DIR_SBIN, _BB_SUID_NEVER) #endif +#ifdef CONFIG_PRINTENV + APPLET(printenv, printenv_main, _BB_DIR_BIN, _BB_SUID_NEVER) +#endif #ifdef CONFIG_PRINTF APPLET(printf, printf_main, _BB_DIR_USR_BIN, _BB_SUID_NEVER) #endif @@ -545,6 +548,9 @@ #ifdef CONFIG_SULOGIN APPLET(sulogin, sulogin_main, _BB_DIR_SBIN, _BB_SUID_NEVER) #endif +#ifdef CONFIG_SUM + APPLET(sum, sum_main, _BB_DIR_USR_BIN, _BB_SUID_NEVER) +#endif #ifdef CONFIG_SWAPONOFF APPLET(swapoff, swap_on_off_main, _BB_DIR_SBIN, _BB_SUID_NEVER) #endif |