aboutsummaryrefslogtreecommitdiff
path: root/busybox.c
diff options
context:
space:
mode:
authorErik Andersen <andersen@codepoet.org>2000-04-13 01:18:56 +0000
committerErik Andersen <andersen@codepoet.org>2000-04-13 01:18:56 +0000
commit61677feff7f549a48267c2c0c50a7420de6e2599 (patch)
tree1ea829e51641647a35c552e289f4482ab9f5db27 /busybox.c
parent62dc17a3b100496a5c7433cc598d674e244cb6f8 (diff)
downloadbusybox-61677feff7f549a48267c2c0c50a7420de6e2599.tar.gz
Upates to include copyright 2000 to everything
-Erik
Diffstat (limited to 'busybox.c')
-rw-r--r--busybox.c8
1 files changed, 3 insertions, 5 deletions
diff --git a/busybox.c b/busybox.c
index 9a48f4961..b65b13e65 100644
--- a/busybox.c
+++ b/busybox.c
@@ -234,9 +234,6 @@ static const struct Applet applets[] = {
{"sh", shell_main, _BB_DIR_BIN},
#endif
#ifdef BB_SFDISK
- {"fdisk", sfdisk_main, _BB_DIR_SBIN},
-#ifdef BB_SFDISK
-#endif
{"sfdisk", sfdisk_main, _BB_DIR_SBIN},
#endif
#ifdef BB_SLEEP
@@ -382,8 +379,9 @@ int busybox_main(int argc, char **argv)
fprintf(stderr, "Usage: busybox [function] [arguments]...\n");
fprintf(stderr, " or: [function] [arguments]...\n\n");
fprintf(stderr,
- "\tMost people will create a link to busybox for each function\n"
- "\tname, and busybox will act like whatever you invoke it as.\n");
+ "\tBusyBox is a multi-call binary that combines many common Unix utilities into a\n"
+ "\tsingle executable. Most people will create a link to busybox for each function\n"
+ "\tthey wish to use, and BusyBox will act like whatever it was invoked as.\n");
fprintf(stderr, "\nCurrently defined functions:\n");
while (a->name != 0) {