diff options
Diffstat (limited to 'busybox/docs')
-rw-r--r-- | busybox/docs/.cvsignore | 8 | ||||
-rw-r--r-- | busybox/docs/busybox.net/.cvsignore | 2 | ||||
-rw-r--r-- | busybox/docs/new-applet-HOWTO.txt | 9 |
3 files changed, 2 insertions, 17 deletions
diff --git a/busybox/docs/.cvsignore b/busybox/docs/.cvsignore deleted file mode 100644 index ec9e94b..0000000 --- a/busybox/docs/.cvsignore +++ /dev/null @@ -1,8 +0,0 @@ -BusyBox.txt -BusyBox.1 -BusyBox.html -busybox.txt -busybox.ps -busybox.pdf -busybox -busybox.pod diff --git a/busybox/docs/busybox.net/.cvsignore b/busybox/docs/busybox.net/.cvsignore deleted file mode 100644 index 393b002..0000000 --- a/busybox/docs/busybox.net/.cvsignore +++ /dev/null @@ -1,2 +0,0 @@ -BusyBox.html -busybox.tar.gz diff --git a/busybox/docs/new-applet-HOWTO.txt b/busybox/docs/new-applet-HOWTO.txt index 2fc95d3..605974c 100644 --- a/busybox/docs/new-applet-HOWTO.txt +++ b/busybox/docs/new-applet-HOWTO.txt @@ -52,10 +52,10 @@ int mu_main(int argc, char **argv) char mu; if ((fd = open("/dev/random", O_RDONLY)) < 0) - perror_msg_and_die("/dev/random"); + bb_perror_msg_and_die("/dev/random"); if ((n = safe_read(fd, &mu, 1)) < 1) - perror_msg_and_die("/dev/random"); + bb_perror_msg_and_die("/dev/random"); return mu; } @@ -137,11 +137,6 @@ algorithm in busybox.c and the Gods of BusyBox smite you. Yea, verily: /* all programs below here are alphabetically "greater than" 'mu' */ -Finally, add a define for your applet to include/config.h - - #undef CONFIG_MU - - Documentation ------------- |