busybox/applets/install.sh

53 lines
911 B
Bash
Raw Normal View History

1999-11-12 13:33:23 +05:30
#!/bin/sh
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
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
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
for i in $h ; do
appdir=`dirname $i`
mkdir -p $prefix/$appdir || exit 1
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 -> $bb_path"
ln $linkopts $bb_path $prefix$i || exit 1
done
1999-11-22 13:11:00 +05:30
exit 0