1999-11-12 08:03:23 +00:00
|
|
|
#!/bin/sh
|
|
|
|
|
2001-03-08 21:42:11 +00:00
|
|
|
export LC_ALL=POSIX
|
|
|
|
export LC_CTYPE=POSIX
|
|
|
|
|
2011-04-05 02:37:15 +02:00
|
|
|
prefix=$1
|
2006-01-15 14:04:57 +00:00
|
|
|
if [ -z "$prefix" ]; then
|
2018-04-15 10:55:30 +02:00
|
|
|
echo "usage: applets/install.sh DESTINATION TYPE [OPTS ...]"
|
|
|
|
echo " TYPE is one of: --symlinks --hardlinks --binaries --scriptwrapper --none"
|
|
|
|
echo " OPTS is one or more of: --cleanup --noclobber"
|
2011-04-05 02:37:15 +02:00
|
|
|
exit 1
|
1999-11-12 08:03:23 +00:00
|
|
|
fi
|
2017-12-28 23:49:48 +01:00
|
|
|
shift # Keep only remaining options
|
2011-04-05 02:37:15 +02:00
|
|
|
|
2015-05-21 14:48:35 -05:00
|
|
|
# Source the configuration
|
|
|
|
. ./.config
|
|
|
|
|
1999-11-15 17:33:30 +00:00
|
|
|
h=`sort busybox.links | uniq`
|
2011-04-05 02:37:15 +02:00
|
|
|
|
2015-05-21 14:48:35 -05:00
|
|
|
sharedlib_dir="0_lib"
|
|
|
|
|
2011-04-05 02:37:15 +02:00
|
|
|
linkopts=""
|
2007-08-25 18:25:24 +00:00
|
|
|
scriptwrapper="n"
|
2015-05-21 14:48:35 -05:00
|
|
|
binaries="n"
|
2006-06-07 18:08:25 +00:00
|
|
|
cleanup="0"
|
2006-06-07 18:12:27 +00:00
|
|
|
noclobber="0"
|
2017-12-28 23:49:48 +01:00
|
|
|
while [ ${#} -gt 0 ]; do
|
|
|
|
case "$1" in
|
|
|
|
--hardlinks) linkopts="-f";;
|
|
|
|
--symlinks) linkopts="-fs";;
|
|
|
|
--binaries) binaries="y";;
|
|
|
|
--scriptwrapper) scriptwrapper="y"; swrapall="y";;
|
|
|
|
--sw-sh-hard) scriptwrapper="y"; linkopts="-f";;
|
|
|
|
--sw-sh-sym) scriptwrapper="y"; linkopts="-fs";;
|
|
|
|
--cleanup) cleanup="1";;
|
|
|
|
--noclobber) noclobber="1";;
|
2018-04-15 10:55:30 +02:00
|
|
|
--none) h="";;
|
2017-12-28 23:49:48 +01:00
|
|
|
*) echo "Unknown install option: $1"; exit 1;;
|
|
|
|
esac
|
|
|
|
shift
|
|
|
|
done
|
1999-11-12 08:03:23 +00:00
|
|
|
|
2018-02-23 16:29:26 +01:00
|
|
|
if [ -n "$DO_INSTALL_LIBS" ] && [ x"$DO_INSTALL_LIBS" != x"n" ]; then
|
2006-01-15 14:04:57 +00:00
|
|
|
# get the target dir for the libs
|
2006-03-24 02:42:58 +00:00
|
|
|
# assume it starts with lib
|
|
|
|
libdir=$($CC -print-file-name=libc.so | \
|
|
|
|
sed -n 's%^.*\(/lib[^\/]*\)/libc.so%\1%p')
|
|
|
|
if test -z "$libdir"; then
|
|
|
|
libdir=/lib
|
|
|
|
fi
|
2000-07-20 21:57:11 +00:00
|
|
|
|
2011-04-05 02:37:15 +02:00
|
|
|
mkdir -p "$prefix/$libdir" || exit 1
|
2006-01-15 14:04:57 +00:00
|
|
|
for i in $DO_INSTALL_LIBS; do
|
2011-04-05 02:37:15 +02:00
|
|
|
rm -f "$prefix/$libdir/$i" || exit 1
|
|
|
|
if [ -f "$i" ]; then
|
2015-05-21 14:48:35 -05:00
|
|
|
echo " Installing $i to the target at $prefix/$libdir/"
|
2011-04-05 02:37:15 +02:00
|
|
|
cp -pPR "$i" "$prefix/$libdir/" || exit 1
|
2015-05-21 14:48:35 -05:00
|
|
|
chmod 0644 "$prefix/$libdir/`basename $i`" || exit 1
|
2006-01-15 14:04:57 +00:00
|
|
|
fi
|
|
|
|
done
|
|
|
|
fi
|
2006-06-07 18:08:25 +00:00
|
|
|
|
2018-02-23 16:29:26 +01:00
|
|
|
if [ x"$cleanup" = x"1" ] && [ -e "$prefix/bin/busybox" ]; then
|
2006-06-07 18:08:25 +00:00
|
|
|
inode=`ls -i "$prefix/bin/busybox" | awk '{print $1}'`
|
|
|
|
sub_shell_it=`
|
2011-04-05 02:37:15 +02:00
|
|
|
cd "$prefix"
|
|
|
|
for d in usr/sbin usr/bin sbin bin; do
|
|
|
|
pd=$PWD
|
|
|
|
if [ -d "$d" ]; then
|
|
|
|
cd "$d"
|
|
|
|
ls -iL . | grep "^ *$inode" | awk '{print $2}' | env -i xargs rm -f
|
|
|
|
fi
|
|
|
|
cd "$pd"
|
|
|
|
done
|
|
|
|
`
|
2007-08-25 18:25:24 +00:00
|
|
|
exit 0
|
2006-06-07 18:08:25 +00:00
|
|
|
fi
|
|
|
|
|
2011-04-05 02:37:15 +02:00
|
|
|
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 08:03:23 +00:00
|
|
|
|
2007-07-21 15:08:09 +00:00
|
|
|
for i in $h; do
|
2011-04-05 02:37:15 +02:00
|
|
|
appdir=`dirname "$i"`
|
2015-05-21 14:48:35 -05:00
|
|
|
app=`basename "$i"`
|
2018-07-17 13:40:45 +03:00
|
|
|
if [ x"$noclobber" = x"1" ] && ([ -e "$prefix/$i" ] || [ -h "$prefix/$i" ]); then
|
2017-12-28 23:49:47 +01:00
|
|
|
echo " $prefix/$i already exists"
|
|
|
|
continue
|
|
|
|
fi
|
2011-04-05 02:37:15 +02:00
|
|
|
mkdir -p "$prefix/$appdir" || exit 1
|
2018-02-23 16:29:26 +01:00
|
|
|
if [ x"$scriptwrapper" = x"y" ]; then
|
|
|
|
if [ x"$swrapall" != x"y" ] && [ x"$i" = x"/bin/sh" ]; then
|
2011-04-05 02:37:15 +02:00
|
|
|
ln $linkopts busybox "$prefix/$i" || exit 1
|
2007-08-25 18:25:24 +00:00
|
|
|
else
|
2011-04-05 02:37:15 +02:00
|
|
|
rm -f "$prefix/$i"
|
|
|
|
echo "#!/bin/busybox" >"$prefix/$i"
|
|
|
|
chmod +x "$prefix/$i"
|
2007-08-25 18:25:24 +00:00
|
|
|
fi
|
2011-04-04 03:53:23 +02:00
|
|
|
echo " $prefix/$i"
|
2018-02-23 16:29:26 +01:00
|
|
|
elif [ x"$binaries" = x"y" ]; then
|
2015-05-21 14:48:35 -05:00
|
|
|
# Copy the binary over rather
|
2018-02-23 16:29:26 +01:00
|
|
|
if [ -e "$sharedlib_dir/$app" ]; then
|
2017-12-28 23:49:47 +01:00
|
|
|
echo " Copying $sharedlib_dir/$app to $prefix/$i"
|
2018-02-23 16:29:26 +01:00
|
|
|
cp -pPR "$sharedlib_dir/$app" "$prefix/$i" || exit 1
|
2015-05-21 14:48:35 -05:00
|
|
|
else
|
|
|
|
echo "Error: Could not find $sharedlib_dir/$app"
|
|
|
|
exit 1
|
|
|
|
fi
|
2006-06-07 18:12:27 +00:00
|
|
|
else
|
2018-02-23 16:29:26 +01:00
|
|
|
if [ x"$linkopts" = x"-f" ]; then
|
2007-08-25 18:25:24 +00:00
|
|
|
bb_path="$prefix/bin/busybox"
|
|
|
|
else
|
2011-04-05 02:37:15 +02:00
|
|
|
case "$appdir" in
|
2007-08-25 18:25:24 +00:00
|
|
|
/)
|
|
|
|
bb_path="bin/busybox"
|
|
|
|
;;
|
|
|
|
/bin)
|
|
|
|
bb_path="busybox"
|
|
|
|
;;
|
|
|
|
/sbin)
|
|
|
|
bb_path="../bin/busybox"
|
|
|
|
;;
|
2011-04-05 02:37:15 +02:00
|
|
|
/usr/bin | /usr/sbin)
|
2007-08-25 18:25:24 +00:00
|
|
|
bb_path="../../bin/busybox"
|
|
|
|
;;
|
|
|
|
*)
|
2011-04-05 02:37:15 +02:00
|
|
|
echo "Unknown installation directory: $appdir"
|
|
|
|
exit 1
|
2007-08-25 18:25:24 +00:00
|
|
|
;;
|
|
|
|
esac
|
|
|
|
fi
|
2017-12-28 23:49:47 +01:00
|
|
|
echo " $prefix/$i -> $bb_path"
|
|
|
|
ln $linkopts "$bb_path" "$prefix/$i" || exit 1
|
2006-06-07 18:12:27 +00:00
|
|
|
fi
|
2000-07-20 21:57:11 +00:00
|
|
|
done
|
|
|
|
|
1999-11-22 07:41:00 +00:00
|
|
|
exit 0
|