aboutsummaryrefslogtreecommitdiff
path: root/install.sh
blob: 65190f59d85b10ed6f1bd18c4c63f13b1c5505c2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/bin/sh

set -e

if [ "$1" = "" ]; then
    echo "No installation directory, aborting."
    exit 1;
fi

h=`sort busybox.links | uniq`

for i in $h ; do
	echo "  $1$i -> /bin/busybox"
	mkdir -p $1/`echo $i | sed -e 's/\/[^\/]*$//' `
	ln -fs /bin/busybox $1$i
done
rm -f $1/bin/busybox
mkdir -p $1/bin
install -m 755 busybox $1/bin/busybox

exit 0