2007-06-01 17:00:43 +00:00
|
|
|
# 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() {
|
2009-01-05 23:02:43 +00:00
|
|
|
CT_Extract "ELFkickers-${CT_SSTRIP_ELFKICKERS_VERSION}"
|
|
|
|
CT_Patch "ELFkickers-${CT_SSTRIP_ELFKICKERS_VERSION}"
|
2007-06-01 17:00:43 +00:00
|
|
|
}
|
|
|
|
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-11-13 18:22:23 +00:00
|
|
|
CT_DoExecLog ALL make CC="${CT_HOST}-gcc" 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)
|
|
|
|
do_tools_sstrip_get() {
|
2009-05-11 20:45:42 +00:00
|
|
|
CT_GetFile sstrip .c http://git.buildroot.net/buildroot/plain/toolchain/sstrip
|
2007-06-01 17:00:43 +00:00
|
|
|
}
|
|
|
|
do_tools_sstrip_extract() {
|
2009-05-11 20:45:42 +00:00
|
|
|
# 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"
|
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-11-13 18:22:23 +00:00
|
|
|
CT_DoExecLog ALL "${CT_HOST}-gcc" -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
|
|
|
|
2009-01-03 21:11:41 +00:00
|
|
|
*) do_tools_sstrip_get() {
|
2007-06-16 18:08:14 +00:00
|
|
|
:
|
|
|
|
}
|
|
|
|
do_tools_sstrip_extract() {
|
|
|
|
:
|
|
|
|
}
|
|
|
|
do_tools_sstrip_build() {
|
|
|
|
:
|
|
|
|
}
|
|
|
|
;;
|
2007-06-01 17:00:43 +00:00
|
|
|
esac
|