config/tools/sstrip.in
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Fri Oct 10 08:46:29 2008 +0000 (2008-10-10)
changeset 915 452aa1d7f9b1
parent 875 07dcd5ca5094
child 916 68af6b83ff7e
permissions -rw-r--r--
Add the Linux kernel 2.6.27.
Remove all 2.6.25 versions up to 2.6.25.17.
Mark 2.6.25.18 as being OBSOLETE.

/trunk/config/kernel/linux.in | 98 7 91 0 +++---------------------------------------------
1 file changed, 7 insertions(+), 91 deletions(-)
     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