blob: 7cae30b457c4b81d7da2b2c49d9ec6fe2140245a [file] [log] [blame]
Mark Whitleyeac26362000-12-19 17:35:24 +00001How to Add a New Applet to BusyBox
2==================================
3
4This document details the steps you must take to add a new applet to BusyBox.
5
6Credits:
7Matt Kraai - initial writeup
8Mark Whitley - the remix
Matt Kraai3b1cbd72002-03-18 16:03:00 +00009Thomas Lundquist - Added stuff for the new directory layout.
Mark Whitleyeac26362000-12-19 17:35:24 +000010
11Initial Write
12-------------
13
14First, write your applet. Be sure to include copyright information at the
15top, such as who you stole the code from and so forth. Also include the
16mini-GPL boilerplate. Be sure to name the main function <applet>_main instead
17of main. And be sure to put it in <applet>.c. For a new applet mu, here is
18the code that would go in mu.c:
19
20----begin example code------
21
22/* vi: set sw=4 ts=4: */
23/*
24 * Mini mu implementation for busybox
25 *
26 *
27 * Copyright (C) [YEAR] by [YOUR NAME] <YOUR EMAIL>
28 *
29 * This program is free software; you can redistribute it and/or modify
30 * it under the terms of the GNU General Public License as published by
31 * the Free Software Foundation; either version 2 of the License, or
32 * (at your option) any later version.
33 *
34 * This program is distributed in the hope that it will be useful,
35 * but WITHOUT ANY WARRANTY; without even the implied warranty of
36 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
37 * General Public License for more details.
38 *
39 * You should have received a copy of the GNU General Public License
40 * along with this program; if not, write to the Free Software
41 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
42 * 02111-1307 USA
43 *
44 */
45
46#include "busybox.h"
47
48int mu_main(int argc, char **argv)
49{
50 int fd;
51 char mu;
52
53 if ((fd = open("/dev/random", O_RDONLY)) < 0)
54 perror_msg_and_die("/dev/random");
55
56 if ((n = safe_read(fd, &mu, 1)) < 1)
57 perror_msg_and_die("/dev/random");
58
59 return mu;
60}
61
62----end example code------
63
Mark Whitley8a6b6192000-12-19 17:54:38 +000064
65Coding Style
66------------
67
68Before you submit your applet for inclusion in BusyBox, (or better yet, before
69you _write_ your applet) please read through the style guide in the docs
70directory and make your program compliant.
71
72
Glenn L McGrath2e6d3cf2001-06-24 12:36:54 +000073Some Words on libbb
74-------------------
Mark Whitley8a6b6192000-12-19 17:54:38 +000075
Mark Whitleyeac26362000-12-19 17:35:24 +000076As you are writing your applet, please be aware of the body of pre-existing
Glenn L McGrath2e6d3cf2001-06-24 12:36:54 +000077useful functions in libbb. Use these instead of reinventing the wheel.
Mark Whitley8a6b6192000-12-19 17:54:38 +000078
Mark Whitleyeac26362000-12-19 17:35:24 +000079Additionally, if you have any useful, general-purpose functions in your
80program that could be useful in another program, consider putting them in
Glenn L McGrath2e6d3cf2001-06-24 12:36:54 +000081libbb.
Mark Whitleyeac26362000-12-19 17:35:24 +000082
Mark Whitleyeac26362000-12-19 17:35:24 +000083
Matt Kraai3b1cbd72002-03-18 16:03:00 +000084Placement / Directory
85---------------------
86
87Find the appropriate directory for your new applet.
88
89Add the applet to the applet directory Makefile:
90
91obj-$(CONFIG_MU) += mu.o
92
93Add the applet to the applet directory config.in:
94
95bool 'mu' CONFIG_MU
96
97
Mark Whitleyeac26362000-12-19 17:35:24 +000098Usage String(s)
99---------------
100
Matt Kraai3b1cbd72002-03-18 16:03:00 +0000101Next, add usage information for you applet to include/usage.h.
102This should look like the following:
Mark Whitleyeac26362000-12-19 17:35:24 +0000103
Glenn L McGrath2e6d3cf2001-06-24 12:36:54 +0000104 #define mu_trivial_usage \
105 "-[abcde] FILES"
106 #define mu_full_usage \
107 "Returns an indeterminate value.\n\n" \
108 "Options:\n" \
109 "\t-a\t\tfirst function\n" \
110 "\t-b\t\tsecond function\n" \
Mark Whitleyeac26362000-12-19 17:35:24 +0000111
112If your program supports flags, the flags should be mentioned on the first
Glenn L McGrath2e6d3cf2001-06-24 12:36:54 +0000113line (-[abcde]) and a detailed description of each flag should go in the
114mu_full_usage section, one flag per line. (Numerous examples of this
115currently exist in usage.h.)
Mark Whitleyeac26362000-12-19 17:35:24 +0000116
117
118Header Files
119------------
120
Matt Kraai3b1cbd72002-03-18 16:03:00 +0000121Next, add an entry to include/applets.h. Be *sure* to keep the list
122in alphabetical order, or else it will break the binary-search lookup
123algorithm in busybox.c and the Gods of BusyBox smite you. Yea, verily:
Mark Whitleyeac26362000-12-19 17:35:24 +0000124
125 /* all programs above here are alphabetically "less than" 'mu' */
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000126 #ifdef CONFIG_MU
Mark Whitleyeac26362000-12-19 17:35:24 +0000127 APPLET("mu", mu_main, _BB_DIR_USR_BIN, mu_usage)
128 #endif
129 /* all programs below here are alphabetically "greater than" 'mu' */
130
131
132Finally, add a define for your applet to Config.h:
133
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000134 #define CONFIG_MU
Mark Whitleyeac26362000-12-19 17:35:24 +0000135
136
137Documentation
138-------------
139
140If you're feeling especially nice, you should also document your applet in the
141docs directory (but nobody ever does that).
142
Matt Kraai3b1cbd72002-03-18 16:03:00 +0000143Adding some text to docs/Configure.help is a nice start.
144
Mark Whitleyeac26362000-12-19 17:35:24 +0000145
146The Grand Announcement
147----------------------
148
149Then create a diff -urN of the files you added (<applet>.c, usage.c,
150applets.h, Config.h) and send it to the mailing list:
Eric Andersen2423b122001-12-08 01:56:15 +0000151busybox@busybox.net. Sending patches as attachments is preferred, but
Mark Whitleyeac26362000-12-19 17:35:24 +0000152not required.
153
154