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