summaryrefslogtreecommitdiff
path: root/scripts/build/tools/sstrip.sh
diff options
context:
space:
mode:
authorYann E. MORIN" <yann.morin.1998@anciens.enib.fr>2008-05-02 21:59:14 (GMT)
committerYann E. MORIN" <yann.morin.1998@anciens.enib.fr>2008-05-02 21:59:14 (GMT)
commitff1d30c4a3c619bf6e451634c35c23ffce835001 (patch)
tree5c8b7f516ada07f973d70556cd7ac3977106edab /scripts/build/tools/sstrip.sh
parentfdb7c1e75d537921898d2068530c137881769eb5 (diff)
For tools/ and debug/ build scripts, annd a numeric prefix, so that they always get built in the same order, in case of library dependencies.
/trunk/scripts/build/debug.sh | 2 1 1 0 +- /trunk/scripts/build/tools.sh | 2 1 1 0 +- 2 files changed, 2 insertions(+), 2 deletions(-)
Diffstat (limited to 'scripts/build/tools/sstrip.sh')
-rw-r--r--scripts/build/tools/sstrip.sh100
1 files changed, 0 insertions, 100 deletions
diff --git a/scripts/build/tools/sstrip.sh b/scripts/build/tools/sstrip.sh
deleted file mode 100644
index 5afdcb0..0000000
--- a/scripts/build/tools/sstrip.sh
+++ /dev/null
@@ -1,100 +0,0 @@
-# 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