config/tools/sstrip.in
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Fri Jan 29 22:43:28 2010 +0100 (2010-01-29)
changeset 1755 30d91bfc1f2a
parent 1242 470541ef2b72
child 1844 4d6a56579d9d
permissions -rw-r--r--
binutils/elf2flt: activate elf2flt build

The code has been lying around inactivated for some time.
Let's enable it at last, and see if any one needs it.
     1 # Configuration file for sstrip tool facility
     2 
     3 config TOOL_sstrip
     4     help
     5       The sstrip utility, to maximise the striping of ELF binaries
     6       (executables and libraries).
     7 
     8 choice
     9     bool
    10     prompt "Use sstrip from:"
    11 
    12 config SSTRIP_BUILDROOT
    13     bool
    14     prompt "buildroot"
    15     help
    16       Buildroot version, forked off the original from ELFkickers.  This one
    17       is somewhat maintained by the buildroot guys.   
    18       Supports big-endian systems.
    19 
    20 config SSTRIP_ELFKICKERS
    21     bool
    22     prompt "ELFkickers (OBSOLETE)"
    23     depends on OBSOLETE
    24     help
    25       The original, ageing version, of sstrip from ELFkickers.
    26       Fully functional, but not maintained anymore.
    27 
    28 endchoice
    29 
    30 config SSTRIP_FROM
    31     string
    32     default "ELFkickers"    if SSTRIP_ELFKICKERS
    33     default "buildroot"     if SSTRIP_BUILDROOT
    34 
    35 if SSTRIP_ELFKICKERS
    36 
    37 config SSTRIP_ELFKICKERS_VERSION
    38     string
    39     default "2.0a"
    40 
    41 endif