config/tools/sstrip.in
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Fri Mar 05 18:19:25 2010 +0100 (2010-03-05)
changeset 1844 4d6a56579d9d
parent 1615 50b25816f5bb
permissions -rw-r--r--
config: hide entries when in backend mode

This implies hidding entries for:
- binutils libraries
- dmalloc
- duma
- native gdb
- ltrace
- strace
- sstrip
     1 # Configuration file for sstrip tool facility
     2 # depends on ! BACKEND
     3 
     4 config TOOL_sstrip
     5     help
     6       The sstrip utility, to maximise the striping of ELF binaries
     7       (executables and libraries).
     8 
     9 choice
    10     bool
    11     prompt "Use sstrip from:"
    12 
    13 config SSTRIP_BUILDROOT
    14     bool
    15     prompt "buildroot"
    16     help
    17       Buildroot version, forked off the original from ELFkickers.  This one
    18       is somewhat maintained by the buildroot guys.   
    19       Supports big-endian systems.
    20 
    21 config SSTRIP_ELFKICKERS
    22     bool
    23     prompt "ELFkickers (OBSOLETE)"
    24     depends on OBSOLETE
    25     help
    26       The original, ageing version, of sstrip from ELFkickers.
    27       Fully functional, but not maintained anymore.
    28 
    29 endchoice
    30 
    31 config SSTRIP_FROM
    32     string
    33     default "ELFkickers"    if SSTRIP_ELFKICKERS
    34     default "buildroot"     if SSTRIP_BUILDROOT
    35 
    36 if SSTRIP_ELFKICKERS
    37 
    38 config SSTRIP_ELFKICKERS_VERSION
    39     string
    40     default "2.0a"
    41 
    42 endif