blob: 4a0b83254c36d518e11b64518bc8d218c637b222 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#!/bin/sh
if [ "$1" == "" ]; then
echo "No installation directory. aborting."
exit 1;
fi
h=`cat busybox.links`
mkdir -p $1/bin
for i in $h ; do
mkdir -p $1/`echo $i | sed -e 's/\(^.*\/\)\(.*\)/\1/g' `
(cd $1/bin ; ln -s busybox `echo $i | sed -e 's/\(^.*\/\)\(.*\)/\2/g' ` )
done
rm -f $1/bin/busybox
install -m 755 busybox $1/bin/busybox
|