hush/install.sh

52 lines
816 B
Bash
Raw Normal View History

1999-11-12 08:03:23 +00:00
#!/bin/sh
1999-11-15 17:33:30 +00:00
set -e
set -x
2000-02-11 21:55:04 +00:00
if [ "$1" = "" ]; then
1999-11-15 17:33:30 +00:00
echo "No installation directory, aborting."
1999-11-12 08:03:23 +00:00
exit 1;
fi
if [ "$2" = "--hardlinks" ]; then
linkopts="-f"
else
linkopts="-fs"
fi
prefix=$1
1999-11-15 17:33:30 +00:00
h=`sort busybox.links | uniq`
1999-11-12 08:03:23 +00:00
1999-11-12 08:03:23 +00:00
rm -f $1/bin/busybox
2000-04-18 23:32:10 +00:00
mkdir -p $1/bin
1999-11-12 08:03:23 +00:00
install -m 755 busybox $1/bin/busybox
for i in $h ; do
appdir=`dirname $i`
mkdir -p $prefix/$appdir
if [ "$2" = "--hardlinks" ]; then
bb_path="$prefix/bin/busybox"
else
case "$appdir" in
/)
bb_path="bin/busybox"
;;
/bin)
bb_path="busybox"
;;
/sbin)
bb_path="../bin/busybox"
;;
/usr/bin|/usr/sbin)
bb_path="../../bin/busybox"
;;
*)
echo "Unknown installation directory: $appdir"
exit 1
;;
esac
fi
echo " $prefix$i -> /bin/busybox"
ln $linkopts $bb_path $prefix$i
done
1999-11-22 07:41:00 +00:00
exit 0