blob: 24bc1d824111419502c802e28e02c591171091db [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
Mike Frysinger9754b912005-09-02 23:06:30 +000014First, write your applet. Be sure to include copyright information at the top,
15such as who you stole the code from and so forth. Also include the mini-GPL
16boilerplate. Be sure to name the main function <applet>_main instead of main.
17And be sure to put it in <applet>.c. Usage does not have to be taken care of by
18your applet.
Glenn L McGrath9c91e412003-10-01 11:33:46 +000019
20For a new applet mu, here is the code that would go in mu.c:
Mark Whitleyeac26362000-12-19 17:35:24 +000021
22----begin example code------
23
24/* vi: set sw=4 ts=4: */
25/*
26 * Mini mu implementation for busybox
27 *
28 *
29 * Copyright (C) [YEAR] by [YOUR NAME] <YOUR EMAIL>
30 *
31 * This program is free software; you can redistribute it and/or modify
32 * it under the terms of the GNU General Public License as published by
33 * the Free Software Foundation; either version 2 of the License, or
34 * (at your option) any later version.
35 *
36 * This program is distributed in the hope that it will be useful,
37 * but WITHOUT ANY WARRANTY; without even the implied warranty of
38 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
39 * General Public License for more details.
40 *
41 * You should have received a copy of the GNU General Public License
42 * along with this program; if not, write to the Free Software
43 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
44 * 02111-1307 USA
45 *
46 */
47
48#include "busybox.h"
49
50int mu_main(int argc, char **argv)
51{
52 int fd;
53 char mu;
54
55 if ((fd = open("/dev/random", O_RDONLY)) < 0)
Mike Frysinger0ea3a6f2005-04-23 01:43:45 +000056 bb_perror_msg_and_die("/dev/random");
Mark Whitleyeac26362000-12-19 17:35:24 +000057
58 if ((n = safe_read(fd, &mu, 1)) < 1)
Mike Frysinger0ea3a6f2005-04-23 01:43:45 +000059 bb_perror_msg_and_die("/dev/random");
Mark Whitleyeac26362000-12-19 17:35:24 +000060
61 return mu;
62}
63
64----end example code------
65
Mark Whitley8a6b6192000-12-19 17:54:38 +000066
67Coding Style
68------------
69
70Before you submit your applet for inclusion in BusyBox, (or better yet, before
71you _write_ your applet) please read through the style guide in the docs
72directory and make your program compliant.
73
74
Glenn L McGrath2e6d3cf2001-06-24 12:36:54 +000075Some Words on libbb
76-------------------
Mark Whitley8a6b6192000-12-19 17:54:38 +000077
Mark Whitleyeac26362000-12-19 17:35:24 +000078As you are writing your applet, please be aware of the body of pre-existing
Glenn L McGrath2e6d3cf2001-06-24 12:36:54 +000079useful functions in libbb. Use these instead of reinventing the wheel.
Mark Whitley8a6b6192000-12-19 17:54:38 +000080
Mark Whitleyeac26362000-12-19 17:35:24 +000081Additionally, if you have any useful, general-purpose functions in your
Mike Frysinger9754b912005-09-02 23:06:30 +000082applet that could be useful in other applets, consider putting them in libbb.
Mark Whitleyeac26362000-12-19 17:35:24 +000083
Mark Whitleyeac26362000-12-19 17:35:24 +000084
Matt Kraai3b1cbd72002-03-18 16:03:00 +000085Placement / Directory
86---------------------
87
88Find the appropriate directory for your new applet.
89
Glenn L McGrath9c91e412003-10-01 11:33:46 +000090Make sure you find the appropriate places in the files, the applets are
91sorted alphabetically.
92
Mike Frysinger9754b912005-09-02 23:06:30 +000093Add the applet to Makefile.in in the chosen directory:
Matt Kraai3b1cbd72002-03-18 16:03:00 +000094
95obj-$(CONFIG_MU) += mu.o
96
Mike Frysinger9754b912005-09-02 23:06:30 +000097Add the applet to Config.in in the chosen directory:
Matt Kraai3b1cbd72002-03-18 16:03:00 +000098
Glenn L McGrath9c91e412003-10-01 11:33:46 +000099config CONFIG_MU
100 bool "MU"
101 default n
102 help
103 Returns an indeterminate value.
Matt Kraai3b1cbd72002-03-18 16:03:00 +0000104
105
Mark Whitleyeac26362000-12-19 17:35:24 +0000106Usage String(s)
107---------------
108
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000109Next, add usage information for you applet to include/usage.h.
Matt Kraai3b1cbd72002-03-18 16:03:00 +0000110This should look like the following:
Mark Whitleyeac26362000-12-19 17:35:24 +0000111
Glenn L McGrath2e6d3cf2001-06-24 12:36:54 +0000112 #define mu_trivial_usage \
113 "-[abcde] FILES"
114 #define mu_full_usage \
115 "Returns an indeterminate value.\n\n" \
116 "Options:\n" \
117 "\t-a\t\tfirst function\n" \
118 "\t-b\t\tsecond function\n" \
Mike Frysinger9754b912005-09-02 23:06:30 +0000119 ...
Mark Whitleyeac26362000-12-19 17:35:24 +0000120
121If your program supports flags, the flags should be mentioned on the first
Glenn L McGrath2e6d3cf2001-06-24 12:36:54 +0000122line (-[abcde]) and a detailed description of each flag should go in the
123mu_full_usage section, one flag per line. (Numerous examples of this
124currently exist in usage.h.)
Mark Whitleyeac26362000-12-19 17:35:24 +0000125
126
127Header Files
128------------
129
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000130Next, add an entry to include/applets.h. Be *sure* to keep the list
131in alphabetical order, or else it will break the binary-search lookup
Matt Kraai3b1cbd72002-03-18 16:03:00 +0000132algorithm in busybox.c and the Gods of BusyBox smite you. Yea, verily:
Mark Whitleyeac26362000-12-19 17:35:24 +0000133
134 /* all programs above here are alphabetically "less than" 'mu' */
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000135 #ifdef CONFIG_MU
Mark Whitleyeac26362000-12-19 17:35:24 +0000136 APPLET("mu", mu_main, _BB_DIR_USR_BIN, mu_usage)
137 #endif
138 /* all programs below here are alphabetically "greater than" 'mu' */
139
140
Mark Whitleyeac26362000-12-19 17:35:24 +0000141Documentation
142-------------
143
144If you're feeling especially nice, you should also document your applet in the
145docs directory (but nobody ever does that).
146
Matt Kraai3b1cbd72002-03-18 16:03:00 +0000147Adding some text to docs/Configure.help is a nice start.
148
Mark Whitleyeac26362000-12-19 17:35:24 +0000149
150The Grand Announcement
151----------------------
152
Mike Frysinger9754b912005-09-02 23:06:30 +0000153Then create a diff -urN of the files you added and/or modified. Typically:
154 <appletdir>/<applet>.c
155 include/usage.c
156 include/applets.h
157 <appletdir>/Makefile.in
158 <appletdir>/config.in
Glenn L McGrath9c91e412003-10-01 11:33:46 +0000159and send it to the mailing list:
Mike Frysinger9754b912005-09-02 23:06:30 +0000160 busybox@busybox.net
161 http://busybox.net/mailman/listinfo/busybox
Mark Whitleyeac26362000-12-19 17:35:24 +0000162
Glenn L McGrath9c91e412003-10-01 11:33:46 +0000163Sending patches as attachments is preferred, but not required.