[BusyBox-cvs] busybox/include applets.h, 1.105, 1.106 usage.h, 1.169, 1.170
Glenn McGrath
bug1 at busybox.net
Thu Oct 9 11:46:25 UTC 2003
Update of /var/cvs/busybox/include
In directory winder:/tmp/cvs-serv10817/include
Modified Files:
applets.h usage.h
Log Message:
New applet, devfsd, by Matteo Croce and Tito
Index: applets.h
===================================================================
RCS file: /var/cvs/busybox/include/applets.h,v
retrieving revision 1.105
retrieving revision 1.106
diff -u -d -r1.105 -r1.106
--- applets.h 24 Sep 2003 03:22:55 -0000 1.105
+++ applets.h 9 Oct 2003 11:46:22 -0000 1.106
@@ -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
Index: usage.h
===================================================================
RCS file: /var/cvs/busybox/include/usage.h,v
retrieving revision 1.169
retrieving revision 1.170
diff -u -d -r1.169 -r1.170
--- usage.h 9 Oct 2003 09:43:17 -0000 1.169
+++ usage.h 9 Oct 2003 11:46:22 -0000 1.170
@@ -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)
More information about the busybox-cvs
mailing list