aboutsummaryrefslogtreecommitdiff
path: root/applets/install.sh
blob: 236f62a568e32c71d2426b0a36a0d755fdd05177 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
#!/bin/sh

set -e
set -x
if [ "$1" = "" ]; then
    echo "No installation directory, aborting."
    exit 1;
fi
if [ "$2" = "--hardlinks" ]; then
    linkopts="-f"
else
    linkopts="-fs"
fi
prefix=$1
h=`sort busybox.links | uniq`


rm -f $1/bin/busybox
mkdir -p $1/bin
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

exit 0