[BusyBox-cvs] busybox/include applets.h,1.81,1.82 usage.h,1.126,1.127

Glenn McGrath bug1 at busybox.net
Tue Dec 10 00:14:36 UTC 2002


Update of /var/cvs/busybox/include
In directory winder:/tmp/cvs-serv20102/include

Modified Files:
	applets.h usage.h 
Log Message:
Realpath applet


Index: applets.h
===================================================================
RCS file: /var/cvs/busybox/include/applets.h,v
retrieving revision 1.81
retrieving revision 1.82
diff -u -d -r1.81 -r1.82
--- applets.h	1 Dec 2002 23:04:04 -0000	1.81
+++ applets.h	10 Dec 2002 00:14:32 -0000	1.82
@@ -416,6 +416,9 @@
 #ifdef CONFIG_READLINK
 	APPLET(readlink, readlink_main, _BB_DIR_USR_BIN, _BB_SUID_NEVER)
 #endif
+#ifdef CONFIG_REALPATH
+	APPLET(realpath, realpath_main, _BB_DIR_USR_BIN, _BB_SUID_NEVER)
+#endif
 #ifdef CONFIG_REBOOT
 	APPLET(reboot, reboot_main, _BB_DIR_SBIN, _BB_SUID_NEVER)
 #endif

Index: usage.h
===================================================================
RCS file: /var/cvs/busybox/include/usage.h,v
retrieving revision 1.126
retrieving revision 1.127
diff -u -d -r1.126 -r1.127
--- usage.h	5 Dec 2002 20:56:31 -0000	1.126
+++ usage.h	10 Dec 2002 00:14:32 -0000	1.127
@@ -1638,6 +1638,11 @@
 #define readlink_full_usage \
 	"Read a symbolic link."
 
+#define realpath_trivial_usage \
+	"pathname  ..."
+#define realpath_full_usage \
+	"return the canonicalized absolute pathnames of given arguments\n\n"
+	
 #define reboot_trivial_usage \
 	""
 #define reboot_full_usage \




More information about the busybox-cvs mailing list