config/binutils/sstrip.in
changeset 1854 02b74bd4373f
parent 1844 4d6a56579d9d
child 1855 73917704e1d7
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/config/binutils/sstrip.in	Wed Mar 17 00:21:57 2010 +0100
     1.3 @@ -0,0 +1,50 @@
     1.4 +# Configuration file for sstrip tool facility
     1.5 +# depends on ! BACKEND
     1.6 +
     1.7 +comment "sstrip"
     1.8 +
     1.9 +config SSTRIP
    1.10 +    bool
    1.11 +    prompt "sstrip"
    1.12 +    help
    1.13 +      The sstrip utility, to maximise the striping of ELF binaries
    1.14 +      (executables and libraries).
    1.15 +
    1.16 +if SSTRIP
    1.17 +
    1.18 +choice
    1.19 +    bool
    1.20 +    prompt "Use sstrip from:"
    1.21 +
    1.22 +config SSTRIP_BUILDROOT
    1.23 +    bool
    1.24 +    prompt "buildroot"
    1.25 +    help
    1.26 +      Buildroot version, forked off the original from ELFkickers.  This one
    1.27 +      is somewhat maintained by the buildroot guys.   
    1.28 +      Supports big-endian systems.
    1.29 +
    1.30 +config SSTRIP_ELFKICKERS
    1.31 +    bool
    1.32 +    prompt "ELFkickers (OBSOLETE)"
    1.33 +    depends on OBSOLETE
    1.34 +    help
    1.35 +      The original, ageing version, of sstrip from ELFkickers.
    1.36 +      Fully functional, but not maintained anymore.
    1.37 +
    1.38 +endchoice
    1.39 +
    1.40 +config SSTRIP_FROM
    1.41 +    string
    1.42 +    default "ELFkickers"    if SSTRIP_ELFKICKERS
    1.43 +    default "buildroot"     if SSTRIP_BUILDROOT
    1.44 +
    1.45 +if SSTRIP_ELFKICKERS
    1.46 +
    1.47 +config SSTRIP_ELFKICKERS_VERSION
    1.48 +    string
    1.49 +    default "2.0a"
    1.50 +
    1.51 +endif
    1.52 +
    1.53 +endif # SSTRIP