summaryrefslogtreecommitdiff
path: root/config/tools/sstrip.in
blob: 7968799814977aca92592c2ecffc128f2005772e (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
# Configuration file for sstrip tool facility
# depends on ! BACKEND

config TOOL_sstrip
    help
      The sstrip utility, to maximise the striping of ELF binaries
      (executables and libraries).

choice
    bool
    prompt "Use sstrip from:"

config SSTRIP_BUILDROOT
    bool
    prompt "buildroot"
    help
      Buildroot version, forked off the original from ELFkickers.  This one
      is somewhat maintained by the buildroot guys.   
      Supports big-endian systems.

config SSTRIP_ELFKICKERS
    bool
    prompt "ELFkickers (OBSOLETE)"
    depends on OBSOLETE
    help
      The original, ageing version, of sstrip from ELFkickers.
      Fully functional, but not maintained anymore.

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