mirror of
https://github.com/crosstool-ng/crosstool-ng.git
synced 2024-12-30 01:28:53 +00:00
0c4633c37f
Get rid of all remaining \"text\" in log messages and replace them with 'text'. Optimise the progress bar, should go un-noticed at log level DEBUG and below. /trunk/scripts/build/tools/200-sstrip.sh | 16 8 8 0 ++-- /trunk/scripts/build/libc_glibc.sh | 50 25 25 0 +++++++------- /trunk/scripts/build/libc_uClibc.sh | 4 2 2 0 /trunk/scripts/build/debug/100-dmalloc.sh | 2 1 1 0 /trunk/scripts/build/debug/400-ltrace.sh | 2 1 1 0 /trunk/scripts/build/debug/300-gdb.sh | 8 4 4 0 +- /trunk/scripts/build/debug/200-duma.sh | 6 3 3 0 +- /trunk/scripts/build/kernel_linux.sh | 30 15 15 0 ++++---- /trunk/scripts/build/cc_gcc.sh | 14 7 7 0 ++-- /trunk/scripts/crosstool.sh | 54 27 27 0 ++++++++-------- /trunk/scripts/functions | 128 64 64 0 ++++++++++++++++++------------------ /trunk/scripts/saveSample.sh | 4 2 2 0 /trunk/scripts/tarball.sh.broken | 20 10 10 0 +++--- /trunk/tools/addToolVersion.sh | 8 4 4 0 +- /trunk/tools/populate.in | 18 9 9 0 ++-- 15 files changed, 182 insertions(+), 182 deletions(-)
101 lines
3.8 KiB
Bash
101 lines
3.8 KiB
Bash
# This will build and install sstrip to run on host and sstrip target files
|
|
|
|
is_enabled="${CT_SSTRIP}"
|
|
|
|
case "${CT_SSTRIP_FROM}" in
|
|
ELFkickers)
|
|
do_print_filename() {
|
|
echo "ELFkickers-${CT_SSTRIP_ELFKICKERS_VERSION}"
|
|
}
|
|
do_tools_sstrip_get() {
|
|
CT_GetFile "ELFkickers-${CT_SSTRIP_ELFKICKERS_VERSION}" \
|
|
http://www.muppetlabs.com/~breadbox/pub/software
|
|
}
|
|
do_tools_sstrip_extract() {
|
|
CT_ExtractAndPatch "ELFkickers-${CT_SSTRIP_ELFKICKERS_VERSION}"
|
|
}
|
|
do_tools_sstrip_build() {
|
|
CT_DoStep INFO "Installing sstrip"
|
|
mkdir -p "${CT_BUILD_DIR}/build-strip"
|
|
cd "${CT_BUILD_DIR}/build-strip"
|
|
( cd "${CT_SRC_DIR}/ELFkickers-${CT_SSTRIP_ELFKICKERS_VERSION}/sstrip"; tar cf - . ) |tar xf -
|
|
|
|
CT_DoLog EXTRA "Building sstrip"
|
|
make CC="${CT_CC_NATIVE}" sstrip 2>&1 |CT_DoLog ALL
|
|
|
|
CT_DoLog EXTRA "Installing sstrip"
|
|
install -m 755 sstrip "${CT_PREFIX_DIR}/bin/${CT_TARGET}-sstrip" 2>&1 |CT_DoLog ALL
|
|
|
|
CT_EndStep
|
|
}
|
|
;;
|
|
|
|
buildroot)
|
|
sstrip_url='http://buildroot.uclibc.org/cgi-bin/viewcvs.cgi/trunk/buildroot/toolchain/sstrip/sstrip.c'
|
|
do_print_filename() {
|
|
echo "sstrip.c"
|
|
}
|
|
do_tools_sstrip_get() {
|
|
# With this one, we must handle the download by ourselves,
|
|
# we can't leave the job to the classic CT_GetFile.
|
|
if [ -f "${CT_TARBALLS_DIR}/sstrip.c" ]; then
|
|
return 0
|
|
fi
|
|
if [ -f "${CT_LOCAL_TARBALLS_DIR}/sstrip.c" ]; then
|
|
CT_DoLog EXTRA "Using 'sstrip' from local storage"
|
|
ln -sf "${CT_LOCAL_TARBALLS_DIR}/sstrip.c" \
|
|
"${CT_TARBALLS_DIR}/sstrip.c" 2>&1 |CT_DoLog ALL
|
|
return 0
|
|
fi
|
|
CT_Pushd "${CT_TARBALLS_DIR}"
|
|
CT_DoLog EXTRA "Retrieving 'sstrip' from network"
|
|
http_data=$(lynx -dump "${sstrip_url}")
|
|
link=$(echo -en "${http_data}" \
|
|
|egrep '\[[[:digit:]]+\]download' \
|
|
|sed -r -e 's/.*\[([[:digit:]]+)\]download.*/\1/;')
|
|
rev_url=$(echo -en "${http_data}" \
|
|
|egrep '^ *8\.' \
|
|
|sed -r -e 's/^ *'${link}'\. +(.+)$/\1/;')
|
|
CT_DoGetFile "${rev_url}" 2>&1 |CT_DoLog ALL
|
|
mv -v sstrip.c?* sstrip.c 2>&1 |CT_DoLog DEBUG
|
|
if [ "${CT_SAVE_TARBALLS}" = "y" ]; then
|
|
CT_DoLog EXTRA "Saving 'sstrip.c' to local storage"
|
|
cp -v sstrip.c "${CT_LOCAL_TARBALLS_DIR}" 2>&1 |CT_DoLog DEBUG
|
|
fi
|
|
CT_Popd
|
|
}
|
|
do_tools_sstrip_extract() {
|
|
# We'll let buildroot guys take care of sstrip maintenance and patching.
|
|
mkdir -p "${CT_SRC_DIR}/sstrip"
|
|
cp -v "${CT_TARBALLS_DIR}/sstrip.c" "${CT_SRC_DIR}/sstrip" |CT_DoLog ALL
|
|
}
|
|
do_tools_sstrip_build() {
|
|
CT_DoStep INFO "Installing sstrip"
|
|
mkdir -p "${CT_BUILD_DIR}/build-sstrip"
|
|
cd "${CT_BUILD_DIR}/build-sstrip"
|
|
|
|
CT_DoLog EXTRA "Building sstrip"
|
|
${CT_CC_NATIVE} -Wall -o sstrip "${CT_SRC_DIR}/sstrip/sstrip.c" 2>&1 |CT_DoLog ALL
|
|
|
|
CT_DoLog EXTRA "Installing sstrip"
|
|
install -m 755 sstrip "${CT_PREFIX_DIR}/bin/${CT_TARGET}-sstrip" 2>&1 |CT_DoLog ALL
|
|
|
|
CT_EndStep
|
|
}
|
|
;;
|
|
|
|
*) do_print_filename() {
|
|
:
|
|
}
|
|
do_tools_sstrip_get() {
|
|
:
|
|
}
|
|
do_tools_sstrip_extract() {
|
|
:
|
|
}
|
|
do_tools_sstrip_build() {
|
|
:
|
|
}
|
|
;;
|
|
esac
|