Welcome to mirror list, hosted at ThFree Co, Russian Federation.

install.sh - git.busybox.net/busybox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4c2a4f1b800e1cb15b295eb7d21e57168256abd7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/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
	mypath=`echo $i | sed -e 's/\(^.*\/\)\(.*\)/\1/g' `;
	myapp=`echo $i | sed -e 's/\(^.*\/\)\(.*\)/\2/g' `;
	mkdir -p $1$mypath
	echo "  $1$mypath$myapp -> /bin/busybox"
	(cd $1$mypath ; rm -f $1$mypath$myapp ; ln -s /bin/busybox $1$mypath$myapp )
done
rm -f $1/bin/busybox
install -m 755 busybox $1/bin/busybox