config/tools/sstrip.in
changeset 149 39d8baac9c69
child 875 07dcd5ca5094
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/config/tools/sstrip.in	Fri Jun 01 17:00:43 2007 +0000
     1.3 @@ -0,0 +1,46 @@
     1.4 +# Configuration file for sstrip tool facility
     1.5 +
     1.6 +menuconfig SSTRIP
     1.7 +    bool
     1.8 +    prompt "sstrip"
     1.9 +    default n
    1.10 +    help
    1.11 +      The sstrip utility, to maximise the striping of ELF binaries
    1.12 +      (executables and libraries).
    1.13 +
    1.14 +if SSTRIP
    1.15 +
    1.16 +choice
    1.17 +    bool
    1.18 +    prompt "Use sstrip from:"
    1.19 +
    1.20 +config SSTRIP_ELFKICKERS
    1.21 +    bool
    1.22 +    prompt "ELFkickers"
    1.23 +    help
    1.24 +      Use the original, ageing version of sstrip from ELFkickers.
    1.25 +      It seems to be fully functional, but not maintained.
    1.26 +
    1.27 +config SSTRIP_BUILDROOT
    1.28 +    bool
    1.29 +    prompt "buildroot"
    1.30 +    help
    1.31 +      Use the version from buildroot. It comes from the original
    1.32 +      ELFkickers, but is somewhat maintained by the buildroot guys.
    1.33 +
    1.34 +endchoice
    1.35 +
    1.36 +config SSTRIP_FROM
    1.37 +    string
    1.38 +    default "ELFkickers"    if SSTRIP_ELFKICKERS
    1.39 +    default "buildroot"     if SSTRIP_BUILDROOT
    1.40 +
    1.41 +if SSTRIP_ELFKICKERS
    1.42 +
    1.43 +config SSTRIP_ELFKICKERS_VERSION
    1.44 +    string
    1.45 +    default "2.0a"
    1.46 +
    1.47 +endif
    1.48 +
    1.49 +endif