diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2008-05-26 12:01:49 +0000 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2008-05-26 12:01:49 +0000 |
commit | 55e547eb6fad0d3ced00a62f04160016d90baabe (patch) | |
tree | ecfd0a9d9a662c807ecb881d8e683fc22e7d6d17 /include | |
parent | a0e17f7df6d4c65ecab7339e9899b294ff8bc04e (diff) | |
download | busybox-w32-55e547eb6fad0d3ced00a62f04160016d90baabe.tar.gz busybox-w32-55e547eb6fad0d3ced00a62f04160016d90baabe.tar.bz2 busybox-w32-55e547eb6fad0d3ced00a62f04160016d90baabe.zip |
- add simple first-draft unoptimized depmod just to proove Vladimir Dronnikov wrong
text data bss dec hex filename
569 0 0 569 239 modutils/depmod.o
Diffstat (limited to 'include')
-rw-r--r-- | include/applets.h | 1 | ||||
-rw-r--r-- | include/usage.h | 6 |
2 files changed, 7 insertions, 0 deletions
diff --git a/include/applets.h b/include/applets.h index 4797e1dd5..17113dfe7 100644 --- a/include/applets.h +++ b/include/applets.h | |||
@@ -115,6 +115,7 @@ USE_DD(APPLET_NOEXEC(dd, dd, _BB_DIR_BIN, _BB_SUID_NEVER, dd)) | |||
115 | USE_DEALLOCVT(APPLET(deallocvt, _BB_DIR_USR_BIN, _BB_SUID_NEVER)) | 115 | USE_DEALLOCVT(APPLET(deallocvt, _BB_DIR_USR_BIN, _BB_SUID_NEVER)) |
116 | USE_DELGROUP(APPLET_ODDNAME(delgroup, deluser, _BB_DIR_BIN, _BB_SUID_NEVER, delgroup)) | 116 | USE_DELGROUP(APPLET_ODDNAME(delgroup, deluser, _BB_DIR_BIN, _BB_SUID_NEVER, delgroup)) |
117 | USE_DELUSER(APPLET(deluser, _BB_DIR_BIN, _BB_SUID_NEVER)) | 117 | USE_DELUSER(APPLET(deluser, _BB_DIR_BIN, _BB_SUID_NEVER)) |
118 | USE_DEPMOD(APPLET(depmod, _BB_DIR_SBIN, _BB_SUID_NEVER)) | ||
118 | USE_DEVFSD(APPLET(devfsd, _BB_DIR_SBIN, _BB_SUID_NEVER)) | 119 | USE_DEVFSD(APPLET(devfsd, _BB_DIR_SBIN, _BB_SUID_NEVER)) |
119 | USE_DF(APPLET(df, _BB_DIR_BIN, _BB_SUID_NEVER)) | 120 | USE_DF(APPLET(df, _BB_DIR_BIN, _BB_SUID_NEVER)) |
120 | USE_APP_DHCPRELAY(APPLET(dhcprelay, _BB_DIR_USR_SBIN, _BB_SUID_NEVER)) | 121 | USE_APP_DHCPRELAY(APPLET(dhcprelay, _BB_DIR_USR_SBIN, _BB_SUID_NEVER)) |
diff --git a/include/usage.h b/include/usage.h index a4fe6a7e0..e9943d539 100644 --- a/include/usage.h +++ b/include/usage.h | |||
@@ -692,6 +692,12 @@ | |||
692 | #define deluser_full_usage "\n\n" \ | 692 | #define deluser_full_usage "\n\n" \ |
693 | "Delete user USER from the system" | 693 | "Delete user USER from the system" |
694 | 694 | ||
695 | #define depmod_trivial_usage \ | ||
696 | "" | ||
697 | #define depmod_full_usage \ | ||
698 | "\n" \ | ||
699 | "\n" | ||
700 | |||
695 | #define devfsd_trivial_usage \ | 701 | #define devfsd_trivial_usage \ |
696 | "mntpnt [-v]" USE_DEVFSD_FG_NP("[-fg][-np]") | 702 | "mntpnt [-v]" USE_DEVFSD_FG_NP("[-fg][-np]") |
697 | #define devfsd_full_usage "\n\n" \ | 703 | #define devfsd_full_usage "\n\n" \ |