config/tools/sstrip.in
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Thu Oct 09 19:13:37 2008 +0000 (2008-10-09)
changeset 913 194c03ec22c3
parent 875 07dcd5ca5094
child 916 68af6b83ff7e
permissions -rw-r--r--
'sstrip' makes no sense on bare-metal, mark it so.

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