2007-06-01 17:00:43 +00:00
|
|
|
# This will build and install sstrip to run on host and sstrip target files
|
|
|
|
|
|
|
|
is_enabled="${CT_SSTRIP}"
|
|
|
|
|
|
|
|
case "${CT_SSTRIP_FROM}" in
|
|
|
|
ELFkickers)
|
2007-06-16 18:08:14 +00:00
|
|
|
do_print_filename() {
|
|
|
|
echo "ELFkickers-${CT_SSTRIP_ELFKICKERS_VERSION}"
|
|
|
|
}
|
2007-06-01 17:00:43 +00:00
|
|
|
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"
|
2008-07-14 21:57:57 +00:00
|
|
|
CT_DoExecLog ALL make CC="${CT_CC_NATIVE}" sstrip
|
2007-06-01 17:00:43 +00:00
|
|
|
|
|
|
|
CT_DoLog EXTRA "Installing sstrip"
|
2008-07-14 21:57:57 +00:00
|
|
|
CT_DoExecLog ALL install -m 755 sstrip "${CT_PREFIX_DIR}/bin/${CT_TARGET}-sstrip"
|
2007-06-01 17:00:43 +00:00
|
|
|
|
|
|
|
CT_EndStep
|
|
|
|
}
|
|
|
|
;;
|
|
|
|
|
|
|
|
buildroot)
|
2008-07-17 21:17:19 +00:00
|
|
|
CT_HasOrAbort lynx
|
2007-06-01 17:00:43 +00:00
|
|
|
sstrip_url='http://buildroot.uclibc.org/cgi-bin/viewcvs.cgi/trunk/buildroot/toolchain/sstrip/sstrip.c'
|
2007-06-16 18:08:14 +00:00
|
|
|
do_print_filename() {
|
|
|
|
echo "sstrip.c"
|
|
|
|
}
|
2007-06-01 17:00:43 +00:00
|
|
|
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.
|
2007-06-16 18:08:14 +00:00
|
|
|
if [ -f "${CT_TARBALLS_DIR}/sstrip.c" ]; then
|
2007-06-01 17:00:43 +00:00
|
|
|
return 0
|
|
|
|
fi
|
2007-07-04 21:56:14 +00:00
|
|
|
if [ -f "${CT_LOCAL_TARBALLS_DIR}/sstrip.c" ]; then
|
2008-05-20 21:32:39 +00:00
|
|
|
CT_DoLog EXTRA "Using 'sstrip' from local storage"
|
2007-09-16 08:27:37 +00:00
|
|
|
ln -sf "${CT_LOCAL_TARBALLS_DIR}/sstrip.c" \
|
|
|
|
"${CT_TARBALLS_DIR}/sstrip.c" 2>&1 |CT_DoLog ALL
|
2007-07-04 21:56:14 +00:00
|
|
|
return 0
|
|
|
|
fi
|
2007-06-16 18:08:14 +00:00
|
|
|
CT_Pushd "${CT_TARBALLS_DIR}"
|
2008-05-20 21:32:39 +00:00
|
|
|
CT_DoLog EXTRA "Retrieving 'sstrip' from network"
|
|
|
|
http_data=$(lynx -dump "${sstrip_url}")
|
|
|
|
link=$(echo -en "${http_data}" \
|
2007-06-01 17:00:43 +00:00
|
|
|
|egrep '\[[[:digit:]]+\]download' \
|
2008-05-20 21:32:39 +00:00
|
|
|
|sed -r -e 's/.*\[([[:digit:]]+)\]download.*/\1/;')
|
|
|
|
rev_url=$(echo -en "${http_data}" \
|
2007-06-01 17:00:43 +00:00
|
|
|
|egrep '^ *8\.' \
|
2008-05-20 21:32:39 +00:00
|
|
|
|sed -r -e 's/^ *'${link}'\. +(.+)$/\1/;')
|
2007-06-01 17:00:43 +00:00
|
|
|
CT_DoGetFile "${rev_url}" 2>&1 |CT_DoLog ALL
|
2007-07-17 21:55:15 +00:00
|
|
|
mv -v sstrip.c?* sstrip.c 2>&1 |CT_DoLog DEBUG
|
|
|
|
if [ "${CT_SAVE_TARBALLS}" = "y" ]; then
|
2008-05-20 21:32:39 +00:00
|
|
|
CT_DoLog EXTRA "Saving 'sstrip.c' to local storage"
|
2008-07-14 21:57:57 +00:00
|
|
|
CT_DoExecLog ALL cp -v sstrip.c "${CT_LOCAL_TARBALLS_DIR}"
|
2007-07-17 21:55:15 +00:00
|
|
|
fi
|
2007-06-01 17:00:43 +00:00
|
|
|
CT_Popd
|
|
|
|
}
|
|
|
|
do_tools_sstrip_extract() {
|
|
|
|
# We'll let buildroot guys take care of sstrip maintenance and patching.
|
2007-06-16 18:08:14 +00:00
|
|
|
mkdir -p "${CT_SRC_DIR}/sstrip"
|
2008-07-14 21:57:57 +00:00
|
|
|
CT_DoExecLog ALL cp -v "${CT_TARBALLS_DIR}/sstrip.c" "${CT_SRC_DIR}/sstrip"
|
2007-06-01 17:00:43 +00:00
|
|
|
}
|
|
|
|
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"
|
2008-07-14 21:57:57 +00:00
|
|
|
CT_DoExecLog ALL ${CT_CC_NATIVE} -Wall -o sstrip "${CT_SRC_DIR}/sstrip/sstrip.c"
|
2007-06-01 17:00:43 +00:00
|
|
|
|
|
|
|
CT_DoLog EXTRA "Installing sstrip"
|
2008-07-14 21:57:57 +00:00
|
|
|
CT_DoExecLog ALL install -m 755 sstrip "${CT_PREFIX_DIR}/bin/${CT_TARGET}-sstrip"
|
2007-06-01 17:00:43 +00:00
|
|
|
|
|
|
|
CT_EndStep
|
|
|
|
}
|
|
|
|
;;
|
2007-06-16 18:08:14 +00:00
|
|
|
|
|
|
|
*) do_print_filename() {
|
|
|
|
:
|
|
|
|
}
|
|
|
|
do_tools_sstrip_get() {
|
|
|
|
:
|
|
|
|
}
|
|
|
|
do_tools_sstrip_extract() {
|
|
|
|
:
|
|
|
|
}
|
|
|
|
do_tools_sstrip_build() {
|
|
|
|
:
|
|
|
|
}
|
|
|
|
;;
|
2007-06-01 17:00:43 +00:00
|
|
|
esac
|