config/tools/sstrip.in
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Wed May 13 20:55:15 2009 +0000 (2009-05-13)
changeset 1337 7f742f73c2d1
parent 916 68af6b83ff7e
child 1615 50b25816f5bb
permissions -rw-r--r--
Merge the /deve/uclinux branch back to /trunk:
- add support for uClinux, the MMU-less ports of Linux.

-------- diffstat follows --------
/trunk/scripts/build/kernel/linux.sh | 100 1 99 0 ---------------
/trunk/steps.mk | 1 1 0 0 +
/trunk/config/kernel/linux.in | 247 0 247 0 -------------------------------------
/trunk/config/kernel.in | 2 1 1 0
/trunk/config/libc/glibc.in | 2 1 1 0
/trunk/config/libc/eglibc.in | 2 1 1 0
/trunk/config/libc/glibc-eglibc.in-common | 5 5 0 0 +
/trunk/config/config.in | 1 1 0 0 +
8 files changed, 11 insertions(+), 349 deletions(-)
     1 # Configuration file for sstrip tool facility
     2 
     3 config TOOL_sstrip
     4     help
     5       The sstrip utility, to maximise the striping of ELF binaries
     6       (executables and libraries).
     7 
     8 choice
     9     bool
    10     prompt "Use sstrip from:"
    11 
    12 config SSTRIP_BUILDROOT
    13     bool
    14     prompt "buildroot"
    15     help
    16       Buildroot version, forked off the original from ELFkickers.  This one
    17       is somewhat maintained by the buildroot guys.   
    18       Supports big-endian systems.
    19 
    20 config SSTRIP_ELFKICKERS
    21     bool
    22     prompt "ELFkickers"
    23     help
    24       The original, ageing version, of sstrip from ELFkickers.
    25       Fully functional, but not maintained anymore.
    26 
    27 endchoice
    28 
    29 config SSTRIP_FROM
    30     string
    31     default "ELFkickers"    if SSTRIP_ELFKICKERS
    32     default "buildroot"     if SSTRIP_BUILDROOT
    33 
    34 if SSTRIP_ELFKICKERS
    35 
    36 config SSTRIP_ELFKICKERS_VERSION
    37     string
    38     default "2.0a"
    39 
    40 endif