[PATCH] Sync paths in docs/new-applet-HOWTO.txt

Holger Blasum hbl at sysgo.com
Thu Oct 28 16:18:53 UTC 2010


Hello,

attached patch synces docs/new-applet-HOWTO.txt to 
the apparent changes in the config system (Config.src instead 
of Config.in etc) since version 1.16. 

The current docs/new-applet-HOWTO.txt also mentions an (obsolete?)
"bb_config.h" that seems to exist nowhere except a mention in 
scripts/individual but that is something I do not dare to touch
at a quick glance. 

Regards, 

-- 
Holger Blasum (SYSGO AG)
-------------- next part --------------
diff --git a/docs/new-applet-HOWTO.txt b/docs/new-applet-HOWTO.txt
index 2f23756..8a825b9 100644
--- a/docs/new-applet-HOWTO.txt
+++ b/docs/new-applet-HOWTO.txt
@@ -99,14 +99,14 @@ int function(char *a)
 ----end example code------
 
 Add <function_name>.o in the right alphabetically sorted place
-in libbb/Kbuild. You should look at the conditional part of
-libbb/Kbuild aswell.
+in libbb/Kbuild.src. You should look at the conditional part of
+libbb/Kbuild.src as well.
 
 You should also try to find a suitable place in include/libbb.h for
 the function declaration. If not, add it somewhere anyway, with or without
 ifdefs to include or not.
 
-You can look at libbb/Config.in and try to find out if the function is
+You can look at libbb/Config.src and try to find out if the function is
 tunable and add it there if it is.
 
 
@@ -118,11 +118,11 @@ Find the appropriate directory for your new applet.
 Make sure you find the appropriate places in the files, the applets are
 sorted alphabetically.
 
-Add the applet to Kbuild in the chosen directory:
+Add the applet to Kbuild.src in the chosen directory:
 
 lib-$(CONFIG_MU)               += mu.o
 
-Add the applet to Config.in in the chosen directory:
+Add the applet to Config.src in the chosen directory:
 
 config MU
 	bool "MU"
@@ -134,7 +134,7 @@ config MU
 Usage String(s)
 ---------------
 
-Next, add usage information for you applet to include/usage.h.
+Next, add usage information for you applet to include/usage.src.h.
 This should look like the following:
 
 	#define mu_trivial_usage \
@@ -149,17 +149,17 @@ This should look like the following:
 If your program supports flags, the flags should be mentioned on the first
 line (-[abcde]) and a detailed description of each flag should go in the
 mu_full_usage section, one flag per line. (Numerous examples of this
-currently exist in usage.h.)
+currently exist in usage.src.h.)
 
 
 Header Files
 ------------
 
-Next, add an entry to include/applets.h.  Be *sure* to keep the list
+Next, add an entry to include/applets.src.h.  Be *sure* to keep the list
 in alphabetical order, or else it will break the binary-search lookup
 algorithm in busybox.c and the Gods of BusyBox smite you. Yea, verily:
 
-Be sure to read the top of applets.h before adding your applet.
+Be sure to read the top of applets.src.h before adding your applet.
 
 	/* all programs above here are alphabetically "less than" 'mu' */
 	IF_MU(APPLET(mu, _BB_DIR_USR_BIN, _BB_SUID_DROP))


More information about the busybox mailing list