scripts/build/tools/200-sstrip.sh
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Thu Oct 23 13:45:48 2008 +0000 (2008-10-23)
changeset 965 45ddf096def1
parent 714 0b87d31c0f49
child 1041 2573519c00d6
permissions -rw-r--r--
Push the calculation of the tuple's kernel part down to kernel's build scripts:
- update the kernel script's API with the function CT_DiKernelTupleValues
- update doc accordingly (also with the architecture change, missing in the previous commit)
- small clean-up in the main script, remove useless test

/trunk/scripts/build/kernel/bare-metal.sh | 5 5 0 0 +++++
/trunk/scripts/build/kernel/linux.sh | 5 5 0 0 +++++
/trunk/scripts/crosstool.sh | 31 13 18 0 +++++++++++++------------------
/trunk/scripts/functions | 15 8 7 0 ++++++++-------
/trunk/docs/overview.txt | 13 9 4 0 +++++++++----
5 files changed, 40 insertions(+), 29 deletions(-)
     1 # This will build and install sstrip to run on host and sstrip target files
     2 
     3 case "${CT_SSTRIP_FROM}" in
     4     ELFkickers)
     5         do_print_filename() {
     6             echo "ELFkickers-${CT_SSTRIP_ELFKICKERS_VERSION}"
     7         }
     8         do_tools_sstrip_get() {
     9             CT_GetFile "ELFkickers-${CT_SSTRIP_ELFKICKERS_VERSION}"     \
    10                        http://www.muppetlabs.com/~breadbox/pub/software
    11         }
    12         do_tools_sstrip_extract() {
    13             CT_ExtractAndPatch "ELFkickers-${CT_SSTRIP_ELFKICKERS_VERSION}"
    14         }
    15         do_tools_sstrip_build() {
    16             CT_DoStep INFO "Installing sstrip"
    17             mkdir -p "${CT_BUILD_DIR}/build-strip"
    18             cd "${CT_BUILD_DIR}/build-strip"
    19             ( cd "${CT_SRC_DIR}/ELFkickers-${CT_SSTRIP_ELFKICKERS_VERSION}/sstrip"; tar cf - . ) |tar xf -
    20 
    21             CT_DoLog EXTRA "Building sstrip"
    22             CT_DoExecLog ALL make CC="${CT_CC_NATIVE}" sstrip
    23             
    24             CT_DoLog EXTRA "Installing sstrip"
    25             CT_DoExecLog ALL install -m 755 sstrip "${CT_PREFIX_DIR}/bin/${CT_TARGET}-sstrip"
    26 
    27             CT_EndStep
    28         }
    29     ;;
    30 
    31     buildroot)
    32         do_print_filename() {
    33             echo "sstrip.c"
    34         }
    35         do_tools_sstrip_get() {
    36             # Note: the space between sstrip and .c is on purpose.
    37             CT_GetFile sstrip .c    \
    38                        "http://buildroot.uclibc.org/cgi-bin/viewcvs.cgi/*checkout*/trunk/buildroot/toolchain/sstrip/"
    39         }
    40         do_tools_sstrip_extract() {
    41             # We'll let buildroot guys take care of sstrip maintenance and patching.
    42             mkdir -p "${CT_SRC_DIR}/sstrip"
    43             CT_DoExecLog ALL cp -v "${CT_TARBALLS_DIR}/sstrip.c" "${CT_SRC_DIR}/sstrip"
    44         }
    45         do_tools_sstrip_build() {
    46             CT_DoStep INFO "Installing sstrip"
    47             mkdir -p "${CT_BUILD_DIR}/build-sstrip"
    48             cd "${CT_BUILD_DIR}/build-sstrip"
    49 
    50             CT_DoLog EXTRA "Building sstrip"
    51             CT_DoExecLog ALL ${CT_CC_NATIVE} -Wall -o sstrip "${CT_SRC_DIR}/sstrip/sstrip.c"
    52 
    53             CT_DoLog EXTRA "Installing sstrip"
    54             CT_DoExecLog ALL install -m 755 sstrip "${CT_PREFIX_DIR}/bin/${CT_TARGET}-sstrip"
    55 
    56             CT_EndStep
    57         }
    58     ;;
    59 
    60     *)  do_print_filename() {
    61             :
    62         }
    63         do_tools_sstrip_get() {
    64             :
    65         }
    66         do_tools_sstrip_extract() {
    67             :
    68         }
    69         do_tools_sstrip_build() {
    70             :
    71         }
    72     ;;
    73 esac