summaryrefslogtreecommitdiff
path: root/scripts/build/tools
diff options
context:
space:
mode:
authorYann E. MORIN" <yann.morin.1998@anciens.enib.fr>2010-03-16 23:21:57 (GMT)
committerYann E. MORIN" <yann.morin.1998@anciens.enib.fr>2010-03-16 23:21:57 (GMT)
commitb0fece468986e98124dfd59e24222724cf7c96fa (patch)
tree23130fa9ebf64754c203d89ef4a39c9a0bac375f /scripts/build/tools
parent2244007325f1fbd50177b56511091b347837997e (diff)
tools: move sstrip to the binary utilities menu
sstrip is now alone in its 'tools' menu, and we will probably never gain any other 'tool'. Besides, sstrip is just strip, but a little bit more agressive, so it deserves going to the 'binary utilities' menu.
Diffstat (limited to 'scripts/build/tools')
-rw-r--r--scripts/build/tools/000-template.sh34
-rw-r--r--scripts/build/tools/200-sstrip.sh67
2 files changed, 0 insertions, 101 deletions
diff --git a/scripts/build/tools/000-template.sh b/scripts/build/tools/000-template.sh
deleted file mode 100644
index 032f289..0000000
--- a/scripts/build/tools/000-template.sh
+++ /dev/null
@@ -1,34 +0,0 @@
-# Template file for a tool utility
-
-# Put your download code here
-do_tools_foobar_get() {
- # For example:
- # CT_GetFile "foobar-${CT_FOOBAR_VERSION}" http://foobar.com/releases/
- :
-}
-
-# Put your extract code here
-do_tools_foobar_extract() {
- # For example:
- # CT_Extract "foobar-${CT_FOOBAR_VERSION}"
- # CT_Patch "foobar-${CT_FOOBAR_VERSION}"
- :
-}
-
-# Put your build code here
-do_tools_foobar_build() {
- # For example:
- # mkdir -p "${CT_BUILD_DIR}/build-foobar"
- # CT_Pushd "${CT_BUILD_DIR}/build-foobar"
- # CT_DoExecLog ALL \
- # "${CT_SRC_DIR}/foobar-${CT_FOOBAR_VERSION}/configure" \
- # --build=${CT_BUILD} \
- # --host=${CT_TARGET} \
- # --prefix=/usr \
- # --foobar-options
- # CT_DoExecLog ALL make
- # CT_DoExecLog ALL make DESTDIR="${CT_SYSROOT_DIR}" install
- # CT_Popd
- :
-}
-
diff --git a/scripts/build/tools/200-sstrip.sh b/scripts/build/tools/200-sstrip.sh
deleted file mode 100644
index c677072..0000000
--- a/scripts/build/tools/200-sstrip.sh
+++ /dev/null
@@ -1,67 +0,0 @@
-# This will build and install sstrip to run on host and sstrip target files
-
-case "${CT_SSTRIP_FROM}" in
- ELFkickers)
- do_tools_sstrip_get() {
- CT_GetFile "ELFkickers-${CT_SSTRIP_ELFKICKERS_VERSION}" \
- http://www.muppetlabs.com/~breadbox/pub/software
- }
- do_tools_sstrip_extract() {
- CT_Extract "ELFkickers-${CT_SSTRIP_ELFKICKERS_VERSION}"
- CT_Patch "ELFkickers-${CT_SSTRIP_ELFKICKERS_VERSION}"
- }
- do_tools_sstrip_build() {
- CT_DoStep INFO "Installing sstrip"
- CT_DoExecLog ALL cp -av "${CT_SRC_DIR}/ELFkickers-${CT_SSTRIP_ELFKICKERS_VERSION}/sstrip" \
- "${CT_BUILD_DIR}/build-strip"
- cd "${CT_BUILD_DIR}/build-strip"
-
- CT_DoLog EXTRA "Building sstrip"
- CT_DoExecLog ALL make CC="${CT_HOST}-gcc" sstrip
-
- CT_DoLog EXTRA "Installing sstrip"
- CT_DoExecLog ALL install -m 755 sstrip "${CT_PREFIX_DIR}/bin/${CT_TARGET}-sstrip"
-
- CT_EndStep
- }
- ;;
-
- buildroot)
- do_tools_sstrip_get() {
- CT_GetFile sstrip .c http://git.buildroot.net/buildroot/plain/toolchain/sstrip
- }
- do_tools_sstrip_extract() {
- # We leave the sstrip maintenance to the buildroot people:
- # -> any fix-up goes directly there
- # -> we don't have patches for it
- # -> we don't need to patch it
- # -> just create a directory in src/, and copy it there.
- CT_DoExecLog DEBUG mkdir -p "${CT_SRC_DIR}/sstrip"
- CT_DoExecLog DEBUG cp -v "${CT_TARBALLS_DIR}/sstrip.c" "${CT_SRC_DIR}/sstrip"
- }
- 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_DoExecLog ALL "${CT_HOST}-gcc" -Wall -o sstrip "${CT_SRC_DIR}/sstrip/sstrip.c"
-
- CT_DoLog EXTRA "Installing sstrip"
- CT_DoExecLog ALL install -m 755 sstrip "${CT_PREFIX_DIR}/bin/${CT_TARGET}-sstrip"
-
- CT_EndStep
- }
- ;;
-
- *) do_tools_sstrip_get() {
- :
- }
- do_tools_sstrip_extract() {
- :
- }
- do_tools_sstrip_build() {
- :
- }
- ;;
-esac