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