1999-11-12 13:33:23 +05:30
|
|
|
#!/bin/sh
|
|
|
|
|
2001-03-09 03:12:11 +05:30
|
|
|
export LC_ALL=POSIX
|
|
|
|
export LC_CTYPE=POSIX
|
|
|
|
|
2000-07-25 22:17:03 +05:30
|
|
|
prefix=$1
|
|
|
|
if [ "$prefix" = "" ]; then
|
1999-11-15 23:03:30 +05:30
|
|
|
echo "No installation directory, aborting."
|
1999-11-12 13:33:23 +05:30
|
|
|
exit 1;
|
|
|
|
fi
|
2000-07-21 03:27:11 +05:30
|
|
|
if [ "$2" = "--hardlinks" ]; then
|
|
|
|
linkopts="-f"
|
|
|
|
else
|
|
|
|
linkopts="-fs"
|
|
|
|
fi
|
1999-11-15 23:03:30 +05:30
|
|
|
h=`sort busybox.links | uniq`
|
1999-11-12 13:33:23 +05:30
|
|
|
|
2000-07-21 03:27:11 +05:30
|
|
|
|
2000-07-29 01:04:02 +05:30
|
|
|
rm -f $prefix/bin/busybox || exit 1
|
|
|
|
mkdir -p $prefix/bin || exit 1
|
|
|
|
install -m 755 busybox $prefix/bin/busybox || exit 1
|
1999-11-12 13:33:23 +05:30
|
|
|
|
2000-07-21 03:27:11 +05:30
|
|
|
for i in $h ; do
|
|
|
|
appdir=`dirname $i`
|
2000-07-29 01:04:02 +05:30
|
|
|
mkdir -p $prefix/$appdir || exit 1
|
2000-07-21 03:27:11 +05:30
|
|
|
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
|
2000-07-29 01:04:02 +05:30
|
|
|
echo " $prefix$i -> $bb_path"
|
|
|
|
ln $linkopts $bb_path $prefix$i || exit 1
|
2000-07-21 03:27:11 +05:30
|
|
|
done
|
|
|
|
|
1999-11-22 13:11:00 +05:30
|
|
|
exit 0
|