config/binutils/sstrip.in
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Wed Mar 17 00:21:57 2010 +0100 (2010-03-17)
changeset 1854 02b74bd4373f
parent 1844 config/tools/sstrip.in@4d6a56579d9d
child 1855 73917704e1d7
permissions -rw-r--r--
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.
     1 # Configuration file for sstrip tool facility
     2 # depends on ! BACKEND
     3 
     4 comment "sstrip"
     5 
     6 config SSTRIP
     7     bool
     8     prompt "sstrip"
     9     help
    10       The sstrip utility, to maximise the striping of ELF binaries
    11       (executables and libraries).
    12 
    13 if SSTRIP
    14 
    15 choice
    16     bool
    17     prompt "Use sstrip from:"
    18 
    19 config SSTRIP_BUILDROOT
    20     bool
    21     prompt "buildroot"
    22     help
    23       Buildroot version, forked off the original from ELFkickers.  This one
    24       is somewhat maintained by the buildroot guys.   
    25       Supports big-endian systems.
    26 
    27 config SSTRIP_ELFKICKERS
    28     bool
    29     prompt "ELFkickers (OBSOLETE)"
    30     depends on OBSOLETE
    31     help
    32       The original, ageing version, of sstrip from ELFkickers.
    33       Fully functional, but not maintained anymore.
    34 
    35 endchoice
    36 
    37 config SSTRIP_FROM
    38     string
    39     default "ELFkickers"    if SSTRIP_ELFKICKERS
    40     default "buildroot"     if SSTRIP_BUILDROOT
    41 
    42 if SSTRIP_ELFKICKERS
    43 
    44 config SSTRIP_ELFKICKERS_VERSION
    45     string
    46     default "2.0a"
    47 
    48 endif
    49 
    50 endif # SSTRIP