config/tools/sstrip.in
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Fri Mar 19 18:46:57 2010 +0100 (2010-03-19)
changeset 1846 4220dec659c6
parent 1615 50b25816f5bb
permissions -rw-r--r--
scripts: fix dumping the config for companion libraries for target

Companion libraries can be disable for the host, but still used for
the target (eg. binutils or gdb). Dump the version also in this case.
     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