summaryrefslogtreecommitdiff
path: root/config/tools/sstrip.in
blob: ed5a584d8793ad5efde205a6aa3b79eea27915e3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
# Configuration file for sstrip tool facility

menuconfig SSTRIP
    bool
    prompt "sstrip"
    default n
    help
      The sstrip utility, to maximise the striping of ELF binaries
      (executables and libraries).

if SSTRIP

choice
    bool
    prompt "Use sstrip from:"

config SSTRIP_ELFKICKERS
    bool
    prompt "ELFkickers"
    help
      Use the original, ageing version of sstrip from ELFkickers.
      It seems to be fully functional, but not maintained.

config SSTRIP_BUILDROOT
    bool
    prompt "buildroot"
    help
      Use the version from buildroot. It comes from the original
      ELFkickers, but is somewhat maintained by the buildroot guys.

endchoice

config SSTRIP_FROM
    string
    default "ELFkickers"    if SSTRIP_ELFKICKERS
    default "buildroot"     if SSTRIP_BUILDROOT

if SSTRIP_ELFKICKERS

config SSTRIP_ELFKICKERS_VERSION
    string
    default "2.0a"

endif

endif