summaryrefslogtreecommitdiff
authorRob Landley <rob@landley.net>2006-01-19 21:22:37 (GMT)
committer Rob Landley <rob@landley.net>2006-01-19 21:22:37 (GMT)
commitc8e41157a2b6486397ded716846c6cd8c8edac8e (patch)
treec9ad557debeb994094593e43cdcfce1cb203b996
parent5a620ea22003cba12dc58bc1f30c11cfe9965825 (diff)
downloadbusybox-c8e41157a2b6486397ded716846c6cd8c8edac8e.zip
busybox-c8e41157a2b6486397ded716846c6cd8c8edac8e.tar.gz
busybox-c8e41157a2b6486397ded716846c6cd8c8edac8e.tar.bz2
Update readme and install.sh usage message.
Diffstat
-rw-r--r--README19
-rwxr-xr-xapplets/install.sh2
2 files changed, 11 insertions, 10 deletions
diff --git a/README b/README
index 4fbd631..27da495 100644
--- a/README
+++ b/README
@@ -5,12 +5,12 @@ What is busybox:
BusyBox combines tiny versions of many common UNIX utilities into a single
small executable. It provides minimalist replacements for most of the
- utilities you usually find in bzip2, coreutils, file, findutils, gawk, grep,
- inetutils, modutils, net-tools, procps, sed, shadow, sysklogd, sysvinit, tar,
- util-linux, and vim. The utilities in BusyBox often have fewer options than
- their full-featured cousins; however, the options that are included provide
- the expected functionality and behave very much like their larger
- counterparts.
+ utilities you usually find in bzip2, coreutils, e2fsprogs, file, findutils,
+ gawk, grep, inetutils, less, modutils, net-tools, procps, sed, shadow,
+ sysklogd, sysvinit, tar, util-linux, and vim. The utilities in BusyBox
+ often have fewer options than their full-featured cousins; however, the
+ options that are included provide the expected functionality and behave
+ very much like their larger counterparts.
BusyBox has been written with size-optimization and limited resources in
mind, both to produce small binaries and to reduce run-time memory usage.
@@ -50,9 +50,10 @@ Using busybox:
The build automatically generates a file "busybox.links", which is used by
'make install' to create symlinks to the BusyBox binary for all compiled in
- commands. Use the PREFIX environment variable to specify where to install
- the busybox binary and symlink forest. (i.e., 'make PREFIX=/tmp/foo install',
- or 'make PREFIX=/tmp/foo install-hardlinks' if you prefer hard links.)
+ commands. This uses the PREFIX environment variable to specify where to
+ install, and installs hardlinks or symlinks depending on the configuration
+ preferences. (You can also manually run the install script at
+ "applets/install.sh").
----------------
diff --git a/applets/install.sh b/applets/install.sh
index cc6c1fa..0bffc73 100755
--- a/applets/install.sh
+++ b/applets/install.sh
@@ -5,7 +5,7 @@ export LC_CTYPE=POSIX
prefix=${1}
if [ -z "$prefix" ]; then
- echo "No installation directory, aborting."
+ echo "usage: applets/install.sh DESTINATION [--symlinks/--hardlinks]"
exit 1;
fi
h=`sort busybox.links | uniq`