2000-12-19 23:05:24 +05:30
|
|
|
How to Add a New Applet to BusyBox
|
|
|
|
==================================
|
|
|
|
|
|
|
|
This document details the steps you must take to add a new applet to BusyBox.
|
|
|
|
|
|
|
|
Credits:
|
|
|
|
Matt Kraai - initial writeup
|
|
|
|
Mark Whitley - the remix
|
2007-05-08 23:22:17 +05:30
|
|
|
Thomas Lundquist - Trying to keep it updated.
|
|
|
|
|
|
|
|
When doing this you should consider using the latest svn trunk.
|
2009-09-06 06:28:59 +05:30
|
|
|
This is a good thing if you plan to getting it committed into mainline.
|
2000-12-19 23:05:24 +05:30
|
|
|
|
|
|
|
Initial Write
|
|
|
|
-------------
|
|
|
|
|
2005-09-03 04:36:30 +05:30
|
|
|
First, write your applet. Be sure to include copyright information at the top,
|
|
|
|
such as who you stole the code from and so forth. Also include the mini-GPL
|
|
|
|
boilerplate. Be sure to name the main function <applet>_main instead of main.
|
|
|
|
And be sure to put it in <applet>.c. Usage does not have to be taken care of by
|
|
|
|
your applet.
|
2007-05-27 00:30:18 +05:30
|
|
|
Make sure to #include "libbb.h" as the first include file in your applet so
|
2006-06-03 02:26:16 +05:30
|
|
|
the bb_config.h and appropriate platform specific files are included properly.
|
2003-10-01 17:03:46 +05:30
|
|
|
|
|
|
|
For a new applet mu, here is the code that would go in mu.c:
|
2000-12-19 23:05:24 +05:30
|
|
|
|
2007-05-08 23:22:17 +05:30
|
|
|
(busybox.h already includes most usual header files. You do not need
|
|
|
|
#include <stdio.h> etc...)
|
|
|
|
|
|
|
|
|
2000-12-19 23:05:24 +05:30
|
|
|
----begin example code------
|
|
|
|
|
|
|
|
/* vi: set sw=4 ts=4: */
|
|
|
|
/*
|
|
|
|
* Mini mu implementation for busybox
|
|
|
|
*
|
|
|
|
* Copyright (C) [YEAR] by [YOUR NAME] <YOUR EMAIL>
|
|
|
|
*
|
2006-04-12 23:25:51 +05:30
|
|
|
* Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
|
2000-12-19 23:05:24 +05:30
|
|
|
*/
|
|
|
|
|
2007-05-27 00:30:18 +05:30
|
|
|
#include "libbb.h"
|
2007-05-08 23:22:17 +05:30
|
|
|
#include "other.h"
|
2000-12-19 23:05:24 +05:30
|
|
|
|
2007-10-11 15:35:36 +05:30
|
|
|
int mu_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
|
2000-12-19 23:05:24 +05:30
|
|
|
int mu_main(int argc, char **argv)
|
|
|
|
{
|
|
|
|
int fd;
|
2007-11-04 10:16:46 +05:30
|
|
|
ssize_t n;
|
2000-12-19 23:05:24 +05:30
|
|
|
char mu;
|
|
|
|
|
2006-08-29 05:09:36 +05:30
|
|
|
fd = xopen("/dev/random", O_RDONLY);
|
2000-12-19 23:05:24 +05:30
|
|
|
|
|
|
|
if ((n = safe_read(fd, &mu, 1)) < 1)
|
2005-04-23 07:13:45 +05:30
|
|
|
bb_perror_msg_and_die("/dev/random");
|
2000-12-19 23:05:24 +05:30
|
|
|
|
|
|
|
return mu;
|
|
|
|
}
|
|
|
|
|
|
|
|
----end example code------
|
|
|
|
|
2000-12-19 23:24:38 +05:30
|
|
|
|
|
|
|
Coding Style
|
|
|
|
------------
|
|
|
|
|
|
|
|
Before you submit your applet for inclusion in BusyBox, (or better yet, before
|
|
|
|
you _write_ your applet) please read through the style guide in the docs
|
|
|
|
directory and make your program compliant.
|
|
|
|
|
|
|
|
|
2001-06-24 18:06:54 +05:30
|
|
|
Some Words on libbb
|
|
|
|
-------------------
|
2000-12-19 23:24:38 +05:30
|
|
|
|
2000-12-19 23:05:24 +05:30
|
|
|
As you are writing your applet, please be aware of the body of pre-existing
|
2001-06-24 18:06:54 +05:30
|
|
|
useful functions in libbb. Use these instead of reinventing the wheel.
|
2000-12-19 23:24:38 +05:30
|
|
|
|
2000-12-19 23:05:24 +05:30
|
|
|
Additionally, if you have any useful, general-purpose functions in your
|
2005-09-03 04:36:30 +05:30
|
|
|
applet that could be useful in other applets, consider putting them in libbb.
|
2000-12-19 23:05:24 +05:30
|
|
|
|
2007-05-08 23:22:17 +05:30
|
|
|
And it may be possible that some of the other applets uses functions you
|
|
|
|
could use. If so, you have to rip the function out of the applet and make
|
|
|
|
a libbb function out of it.
|
|
|
|
|
|
|
|
Adding a libbb function:
|
|
|
|
------------------------
|
|
|
|
|
|
|
|
Make a new file named <function_name>.c
|
|
|
|
|
|
|
|
----start example code------
|
|
|
|
|
|
|
|
#include "libbb.h"
|
|
|
|
#include "other.h"
|
|
|
|
|
|
|
|
int function(char *a)
|
|
|
|
{
|
|
|
|
return *a;
|
|
|
|
}
|
|
|
|
|
|
|
|
----end example code------
|
|
|
|
|
2007-05-30 05:59:55 +05:30
|
|
|
Add <function_name>.o in the right alphabetically sorted place
|
|
|
|
in libbb/Kbuild. You should look at the conditional part of
|
2007-05-08 23:22:17 +05:30
|
|
|
libbb/Kbuild aswell.
|
|
|
|
|
2007-05-30 05:59:55 +05:30
|
|
|
You should also try to find a suitable place in include/libbb.h for
|
2007-05-08 23:22:17 +05:30
|
|
|
the function declaration. If not, add it somewhere anyway, with or without
|
|
|
|
ifdefs to include or not.
|
|
|
|
|
2007-05-30 05:59:55 +05:30
|
|
|
You can look at libbb/Config.in and try to find out if the function is
|
2009-09-06 06:28:59 +05:30
|
|
|
tunable and add it there if it is.
|
2007-05-08 23:22:17 +05:30
|
|
|
|
2000-12-19 23:05:24 +05:30
|
|
|
|
2002-03-18 21:33:00 +05:30
|
|
|
Placement / Directory
|
|
|
|
---------------------
|
|
|
|
|
|
|
|
Find the appropriate directory for your new applet.
|
|
|
|
|
2003-10-01 17:03:46 +05:30
|
|
|
Make sure you find the appropriate places in the files, the applets are
|
|
|
|
sorted alphabetically.
|
|
|
|
|
2007-05-08 23:22:17 +05:30
|
|
|
Add the applet to Kbuild in the chosen directory:
|
2002-03-18 21:33:00 +05:30
|
|
|
|
2007-05-08 23:22:17 +05:30
|
|
|
lib-$(CONFIG_MU) += mu.o
|
2002-03-18 21:33:00 +05:30
|
|
|
|
2005-09-03 04:36:30 +05:30
|
|
|
Add the applet to Config.in in the chosen directory:
|
2002-03-18 21:33:00 +05:30
|
|
|
|
2007-11-04 10:16:46 +05:30
|
|
|
config MU
|
2003-10-01 17:03:46 +05:30
|
|
|
bool "MU"
|
|
|
|
default n
|
|
|
|
help
|
|
|
|
Returns an indeterminate value.
|
2002-03-18 21:33:00 +05:30
|
|
|
|
|
|
|
|
2000-12-19 23:05:24 +05:30
|
|
|
Usage String(s)
|
|
|
|
---------------
|
|
|
|
|
2004-03-15 13:59:22 +05:30
|
|
|
Next, add usage information for you applet to include/usage.h.
|
2002-03-18 21:33:00 +05:30
|
|
|
This should look like the following:
|
2000-12-19 23:05:24 +05:30
|
|
|
|
2001-06-24 18:06:54 +05:30
|
|
|
#define mu_trivial_usage \
|
|
|
|
"-[abcde] FILES"
|
|
|
|
#define mu_full_usage \
|
|
|
|
"Returns an indeterminate value.\n\n" \
|
|
|
|
"Options:\n" \
|
|
|
|
"\t-a\t\tfirst function\n" \
|
|
|
|
"\t-b\t\tsecond function\n" \
|
2005-09-03 04:36:30 +05:30
|
|
|
...
|
2000-12-19 23:05:24 +05:30
|
|
|
|
|
|
|
If your program supports flags, the flags should be mentioned on the first
|
2001-06-24 18:06:54 +05:30
|
|
|
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.)
|
2000-12-19 23:05:24 +05:30
|
|
|
|
|
|
|
|
|
|
|
Header Files
|
|
|
|
------------
|
|
|
|
|
2004-03-15 13:59:22 +05:30
|
|
|
Next, add an entry to include/applets.h. Be *sure* to keep the list
|
|
|
|
in alphabetical order, or else it will break the binary-search lookup
|
2002-03-18 21:33:00 +05:30
|
|
|
algorithm in busybox.c and the Gods of BusyBox smite you. Yea, verily:
|
2000-12-19 23:05:24 +05:30
|
|
|
|
2007-05-08 23:22:17 +05:30
|
|
|
Be sure to read the top of applets.h before adding your applet.
|
|
|
|
|
2000-12-19 23:05:24 +05:30
|
|
|
/* all programs above here are alphabetically "less than" 'mu' */
|
2009-07-30 16:27:19 +05:30
|
|
|
IF_MU(APPLET(mu, _BB_DIR_USR_BIN, _BB_SUID_DROP))
|
2000-12-19 23:05:24 +05:30
|
|
|
/* all programs below here are alphabetically "greater than" 'mu' */
|
|
|
|
|
|
|
|
|
|
|
|
The Grand Announcement
|
|
|
|
----------------------
|
|
|
|
|
2007-05-08 23:22:17 +05:30
|
|
|
Then create a diff by adding the new files with svn (remember your libbb files)
|
|
|
|
svn add <where you put it>/mu.c
|
2007-05-30 05:59:55 +05:30
|
|
|
eventually also:
|
2007-05-08 23:22:17 +05:30
|
|
|
svn add libbb/function.c
|
|
|
|
then
|
2007-05-30 05:59:55 +05:30
|
|
|
svn diff
|
2003-10-01 17:03:46 +05:30
|
|
|
and send it to the mailing list:
|
2005-09-03 04:36:30 +05:30
|
|
|
busybox@busybox.net
|
|
|
|
http://busybox.net/mailman/listinfo/busybox
|
2000-12-19 23:05:24 +05:30
|
|
|
|
2003-10-01 17:03:46 +05:30
|
|
|
Sending patches as attachments is preferred, but not required.
|