scripts/build/tools/200-sstrip.sh
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Sun Jan 11 18:05:25 2009 +0000 (2009-01-11)
changeset 1133 ff9c81b84c42
parent 1126 1ab3d2e08c8b
child 1245 96d74832c40b
permissions -rw-r--r--
The uClibc site has been overhauled lately, so the URL to retrieve sstrip has changed.
Thanks to Thomas Monjalon <thomas@monjalon.net> and John Utz <john@utzweb.net> for spotting this.

/trunk/scripts/build/tools/200-sstrip.sh | 13 10 3 0 ++++++++++---
1 file changed, 10 insertions(+), 3 deletions(-)
yann@479
     1
# This will build and install sstrip to run on host and sstrip target files
yann@479
     2
yann@479
     3
case "${CT_SSTRIP_FROM}" in
yann@479
     4
    ELFkickers)
yann@479
     5
        do_tools_sstrip_get() {
yann@479
     6
            CT_GetFile "ELFkickers-${CT_SSTRIP_ELFKICKERS_VERSION}"     \
yann@479
     7
                       http://www.muppetlabs.com/~breadbox/pub/software
yann@479
     8
        }
yann@479
     9
        do_tools_sstrip_extract() {
yann@1126
    10
            CT_Extract "ELFkickers-${CT_SSTRIP_ELFKICKERS_VERSION}"
yann@1126
    11
            CT_Patch "ELFkickers-${CT_SSTRIP_ELFKICKERS_VERSION}"
yann@479
    12
        }
yann@479
    13
        do_tools_sstrip_build() {
yann@479
    14
            CT_DoStep INFO "Installing sstrip"
yann@479
    15
            mkdir -p "${CT_BUILD_DIR}/build-strip"
yann@479
    16
            cd "${CT_BUILD_DIR}/build-strip"
yann@479
    17
            ( cd "${CT_SRC_DIR}/ELFkickers-${CT_SSTRIP_ELFKICKERS_VERSION}/sstrip"; tar cf - . ) |tar xf -
yann@479
    18
yann@479
    19
            CT_DoLog EXTRA "Building sstrip"
yann@1041
    20
            CT_DoExecLog ALL make CC="${CT_HOST}-gcc" sstrip
yann@479
    21
            
yann@479
    22
            CT_DoLog EXTRA "Installing sstrip"
yann@669
    23
            CT_DoExecLog ALL install -m 755 sstrip "${CT_PREFIX_DIR}/bin/${CT_TARGET}-sstrip"
yann@479
    24
yann@479
    25
            CT_EndStep
yann@479
    26
        }
yann@479
    27
    ;;
yann@479
    28
yann@479
    29
    buildroot)
yann@479
    30
        do_tools_sstrip_get() {
yann@1133
    31
            # We have to retrieve sstrip.c from a viewVC web interface. This
yann@1133
    32
            # is not handled by the common CT_GetFile, thus we must take all
yann@1133
    33
            # steps taken by CT_GetFile ourselves:
yann@1133
    34
yann@1133
    35
            CT_GetLocal sstrip .c && return 0 || true
yann@1133
    36
            CT_TestAndAbort "File '${file}' not present locally, and downloads are not allowed" "${CT_FORBID_DOWNLOAD}" = "y"
yann@1133
    37
            CT_DoLog EXTRA "Retrieving 'sstrip'"
yann@1133
    38
            CT_DoGetFile "http://sources.busybox.net/index.py/trunk/buildroot/toolchain/sstrip/sstrip.c?view=co"
yann@1133
    39
            mv "sstrip.c?view=co" "${CT_TARBALLS_DIR}/sstrip.c"
yann@1133
    40
            CT_SaveLocal "${CT_TARBALLS_DIR}/sstrip.c"
yann@479
    41
        }
yann@479
    42
        do_tools_sstrip_extract() {
yann@479
    43
            # We'll let buildroot guys take care of sstrip maintenance and patching.
yann@479
    44
            mkdir -p "${CT_SRC_DIR}/sstrip"
yann@669
    45
            CT_DoExecLog ALL cp -v "${CT_TARBALLS_DIR}/sstrip.c" "${CT_SRC_DIR}/sstrip"
yann@479
    46
        }
yann@479
    47
        do_tools_sstrip_build() {
yann@479
    48
            CT_DoStep INFO "Installing sstrip"
yann@479
    49
            mkdir -p "${CT_BUILD_DIR}/build-sstrip"
yann@479
    50
            cd "${CT_BUILD_DIR}/build-sstrip"
yann@479
    51
yann@479
    52
            CT_DoLog EXTRA "Building sstrip"
yann@1041
    53
            CT_DoExecLog ALL "${CT_HOST}-gcc" -Wall -o sstrip "${CT_SRC_DIR}/sstrip/sstrip.c"
yann@479
    54
yann@479
    55
            CT_DoLog EXTRA "Installing sstrip"
yann@669
    56
            CT_DoExecLog ALL install -m 755 sstrip "${CT_PREFIX_DIR}/bin/${CT_TARGET}-sstrip"
yann@479
    57
yann@479
    58
            CT_EndStep
yann@479
    59
        }
yann@479
    60
    ;;
yann@479
    61
yann@1112
    62
    *)  do_tools_sstrip_get() {
yann@479
    63
            :
yann@479
    64
        }
yann@479
    65
        do_tools_sstrip_extract() {
yann@479
    66
            :
yann@479
    67
        }
yann@479
    68
        do_tools_sstrip_build() {
yann@479
    69
            :
yann@479
    70
        }
yann@479
    71
    ;;
yann@479
    72
esac