crosstool-ng/tools/populate.in
Yann E. MORIN" ab682b5e47 Simplify populate: no need to be too smart.
If someone is playing us tricks, let him/her be beaten back.
Chances are he/she knows what happens when he/she finds out it does not work any more!

 /trunk/tools/populate.in |    2     1     1     0 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
2008-08-07 22:34:32 +00:00

119 lines
3.4 KiB
Bash

#!/bin/bash
# This script will populate the root directory with libs from the sysroot.
# (C) 2007 Yann E. MORIN
# Licensed under the GPL v2
# Detect where the toolchain is:
BIN_DIR="$(cd "$(dirname "$0")"; pwd)"
CT_READELF="${BIN_DIR}/@@CT_TARGET@@-readelf"
CT_SYSROOT_DIR="${BIN_DIR}/../@@CT_TARGET@@/sys-root"
myname=$(basename "$0")
doHelp() {
cat <<_EOF_
$myname [-f] [-v] -s source_root -d destination_root
-s dir
use 'dir' as the un-populated (source) root directory
-d dir
use 'dir' as the place to put the populated root directory
-f force execution: if destination directory already exists,
it will be removed first.
-v Be verbose
_EOF_
}
CT_ROOT_SRC_DIR=
CT_ROOT_DST_DIR=
CT_FORCE=no
CT_ECHO=true
while getopts ":s:d:fvh" CT_OPT; do
case "${CT_OPT}" in
s) CT_ROOT_SRC_DIR="${OPTARG}";;
d) CT_ROOT_DST_DIR="${OPTARG}";;
f) CT_FORCE=y;;
v) CT_ECHO=echo;;
h) doHelp
exit 0
;;
:) echo "$myname: '-${OPTARG}' takes exactly one argument."
exit 1
;;
?) echo "$myname: unknown option '-${OPTARG}'."
exit 1
;;
esac
done
# Sanity checks
if [ -z "${CT_ROOT_SRC_DIR}" -o -z "${CT_ROOT_DST_DIR}" ]; then
doHelp
exit 1
fi
if [ ! -d "${CT_ROOT_SRC_DIR}" ]; then
echo "$myname: '${CT_ROOT_SRC_DIR}': no such file or directory"
exit 1
fi
if [ -d "${CT_ROOT_DST_DIR}" -a "${CT_FORCE}" != "y" ]; then
echo "$myname: '${CT_ROOT_DST_DIR}': already exists"
exit 1
fi
src_inode=$(ls -di "${CT_ROOT_SRC_DIR}")
dst_inode=$(ls -di "${CT_ROOT_DST_DIR}" 2>/dev/null)
if [ "${src_inode}" = "${dst_inode}" ]; then
echo "$myname: source and destination are the same!"
exit 1
fi
# Get rid of potentially older destination directory
if [ -d "${CT_ROOT_DST_DIR}" ]; then
mv "${CT_ROOT_DST_DIR}" "${CT_ROOT_DST_DIR}.$$"
setsid nohup rm -rf "${CT_ROOT_DST_DIR}.$$" >/dev/null 2>&1 &
fi
# Create the working copy
mkdir -p "${CT_ROOT_DST_DIR}"
# Make all path absolute
CT_ROOT_SRC_DIR=$(cd "${CT_ROOT_SRC_DIR}"; pwd)
CT_ROOT_DST_DIR=$(cd "${CT_ROOT_DST_DIR}"; pwd)
cd "${CT_ROOT_SRC_DIR}"
tar cf - . |(cd "${CT_ROOT_DST_DIR}"; tar xf -)
# Parse the working copy for executables and libraries
cd "${CT_ROOT_DST_DIR}"
still_needed=1
while [ ${still_needed} -eq 1 ]; do
${CT_ECHO} "Looping..."
still_needed=0
for f in $(find . -type f -exec file {} \; |egrep ': ELF [[:digit:]]+-bit .SB (executable|shared object),' |cut -d ":" -f 1); do
${CT_ECHO} "Scanning '${f}'"
for libname in $("${CT_READELF}" -d "${f}" |egrep '(NEEDED)' |sed -r -e 's,.+\[(.+)\] *$,\1,;'); do
${CT_ECHO} " searching for '${libname}'"
if [ -e "lib/${libname}" \
-o -e "usr/lib/${libname}" ]; then
${CT_ECHO} " already present"
continue
fi
for dir in . usr; do
${CT_ECHO} -n " trying in '${dir}'"
libfile="${CT_SYSROOT_DIR}/${dir}/lib/${libname}"
${CT_ECHO} ": '${libfile}'"
if [ -e "${libfile}" ]; then
mkdir -p "${dir}/lib"
${CT_ECHO} " installing '${dir}/lib/${libname}'"
cp "${libfile}" "${dir}/lib/${libname}"
still_needed=1
break
fi
done
done
done
done