# HG changeset patch # User "Yann E. MORIN" # Date 1268782094 -3600 # Node ID e23ffb5c7928fea63242cedb1c1862515ffe468f # Parent 73917704e1d76567563de40181e6f9562c5fc6e0 binutils/sstrip: get rid of ELFkickers ELFkickers are looong dead and unmaintained, and the sstrip from buildroot is working fine *and* is maintained. diff -r 73917704e1d7 -r e23ffb5c7928 config/binutils/sstrip.in --- a/config/binutils/sstrip.in Wed Mar 17 00:24:25 2010 +0100 +++ b/config/binutils/sstrip.in Wed Mar 17 00:28:14 2010 +0100 @@ -11,42 +11,7 @@ help The sstrip utility, to maximise the striping of ELF binaries (executables and libraries). - -if SSTRIP - -choice - bool - prompt "Use sstrip from:" - -config SSTRIP_BUILDROOT - bool - prompt "buildroot" - help + Buildroot version, forked off the original from ELFkickers. This one is somewhat maintained by the buildroot guys. Supports big-endian systems. - -config SSTRIP_ELFKICKERS - bool - prompt "ELFkickers (OBSOLETE)" - depends on OBSOLETE - help - The original, ageing version, of sstrip from ELFkickers. - Fully functional, but not maintained anymore. - -endchoice - -config SSTRIP_FROM - string - default "ELFkickers" if SSTRIP_ELFKICKERS - default "buildroot" if SSTRIP_BUILDROOT - -if SSTRIP_ELFKICKERS - -config SSTRIP_ELFKICKERS_VERSION - string - default "2.0a" - -endif - -endif # SSTRIP diff -r 73917704e1d7 -r e23ffb5c7928 scripts/build/binutils/sstrip.sh --- a/scripts/build/binutils/sstrip.sh Wed Mar 17 00:24:25 2010 +0100 +++ b/scripts/build/binutils/sstrip.sh Wed Mar 17 00:28:14 2010 +0100 @@ -4,57 +4,32 @@ do_tools_sstrip_extract() { :; } do_tools_sstrip() { :; } -case "${CT_SSTRIP_FROM}" in - ELFkickers) - do_sstrip_get() { - CT_GetFile "ELFkickers-${CT_SSTRIP_ELFKICKERS_VERSION}" \ - http://www.muppetlabs.com/~breadbox/pub/software - } - do_sstrip_extract() { - CT_Extract "ELFkickers-${CT_SSTRIP_ELFKICKERS_VERSION}" - CT_Patch "ELFkickers-${CT_SSTRIP_ELFKICKERS_VERSION}" - } - do_sstrip() { - 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" +if [ "${CT_SSTRIP}" = "y" ]; then + do_sstrip_get() { + CT_GetFile sstrip .c http://git.buildroot.net/buildroot/plain/toolchain/sstrip + } - 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" + do_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" + } - CT_EndStep - } - ;; + do_sstrip() { + CT_DoStep INFO "Installing sstrip" + mkdir -p "${CT_BUILD_DIR}/build-sstrip" + cd "${CT_BUILD_DIR}/build-sstrip" - buildroot) - do_sstrip_get() { - CT_GetFile sstrip .c http://git.buildroot.net/buildroot/plain/toolchain/sstrip - } - do_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_sstrip() { - 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 "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_DoLog EXTRA "Installing sstrip" - CT_DoExecLog ALL install -m 755 sstrip "${CT_PREFIX_DIR}/bin/${CT_TARGET}-sstrip" - - CT_EndStep - } - ;; -esac + CT_EndStep + } +fi