aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorGlenn L McGrath <bug1@ihug.co.nz>2003-10-09 11:46:23 +0000
committerGlenn L McGrath <bug1@ihug.co.nz>2003-10-09 11:46:23 +0000
commit17d21fa5191bd3298e9bee66e2fcc9afb24a9649 (patch)
tree262a980586bed9b84ca5832f85f8c5dd1d42cfaa /include
parenta55d72bbb419215d76465d484bfeee84308af0bc (diff)
downloadbusybox-17d21fa5191bd3298e9bee66e2fcc9afb24a9649.tar.gz
New applet, devfsd, by Matteo Croce and Tito
Diffstat (limited to 'include')
-rw-r--r--include/applets.h3
-rw-r--r--include/usage.h12
2 files changed, 15 insertions, 0 deletions
diff --git a/include/applets.h b/include/applets.h
index b1425fa81..6f1295a30 100644
--- a/include/applets.h
+++ b/include/applets.h
@@ -142,6 +142,9 @@
#ifdef CONFIG_DELUSER
APPLET(deluser, deluser_main, _BB_DIR_BIN, _BB_SUID_NEVER)
#endif
+#ifdef CONFIG_DEVFSD
+ APPLET(devfsd, devfsd_main, _BB_DIR_SBIN, _BB_SUID_NEVER)
+#endif
#ifdef CONFIG_DF
APPLET(df, df_main, _BB_DIR_BIN, _BB_SUID_NEVER)
#endif
diff --git a/include/usage.h b/include/usage.h
index c109d0cf6..0b03102a7 100644
--- a/include/usage.h
+++ b/include/usage.h
@@ -336,6 +336,18 @@
#define deluser_full_usage \
"Deletes user USER from the system"
+#define devfsd_trivial_usage \
+ "mntpnt [-v] [-fg] [-np]"
+#define devfsd_full_usage \
+ "Optional daemon for managing devfs (the Linux Device Filesystem).\n" \
+ "\nOptions:\n" \
+ "\tmntpnt\tThe mount point where devfs is mounted.\n\n" \
+ "\t-v\tPrint the protocol version numbers for devfsd\n" \
+ "\t\tand the kernel-side protocol version and exits.\n" \
+ "\t-fg\tRun the daemon in the foreground.\n\n" \
+ "\t-np\tExit after parsing the configuration file and processing syn-\n" \
+ "\t\tthetic REGISTER events. Do not poll for events."
+
#ifdef CONFIG_FEATURE_HUMAN_READABLE
#define USAGE_HUMAN_READABLE(a) a
#define USAGE_NOT_HUMAN_READABLE(a)