summaryrefslogtreecommitdiff
path: root/config/binutils/binutils.in.2
blob: 336098b2d2f0b0941ebdb38e4dd7140e470dc88e (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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
# elf2flt options

if ARCH_BINFMT_FLAT

comment "elf2flt"

choice
    bool
    prompt "elf2flt version"

config ELF2FLT_GIT
    bool
    prompt "git"
    help
      Grab the latest version of elf2flt from the CVS repository

config ELF2FLT_CUSTOM
    bool
    prompt "Custom elf2flt"
    depends on EXPERIMENTAL
    help
      The choosen elf2flt version shall be not downloaded. Instead use
      a custom location to get the source.

endchoice

if ELF2FLT_GIT

config ELF2FLT_GIT_CSET
    string
    prompt "git cset"
    default "9dbc458c6122c495bbdec8dc975a15c9d39e5ff2"
    help
      Enter the git changeset to use.

      The default currently points to the HEAD of the git tree.

endif # ELF2FLT_GIT

config ELF2FLT_VERSION
    string
    default ELF2FLT_GIT_CSET if ELF2FLT_GIT
    default ELF2FLT_CUSTOM_VERSION if ELF2FLT_CUSTOM

if ELF2FLT_CUSTOM

config ELF2FLT_CUSTOM_LOCATION
    string
    prompt "Full path to custom elf2flt source"
    help
      Enter the path to the directory or tarball of your source for elf2flt.

      If the path is a tarball, it should extract to: <name>-<version>/
      where the name is this component, elf2flt, and the version is set
      below in the custom version string.

config ELF2FLT_CUSTOM_VERSION
    string
    prompt "elf2flt custom version number"
    help
      Enter the version number for your custom elf2flt.

endif # ELF2FLT_CUSTOM

config ELF2FLT_EXTRA_CONFIG_ARRAY
    string
    prompt "elf2flt extra config"
    default ""
    help
      Extra flags passed onto ./configure when configuring
      
      You can enter multiple arguments here, and arguments can contain spaces
      if they are properly quoted (or escaped, but prefer quotes). Eg.:
          --with-foo="1st arg with 4 spaces" --with-bar=2nd-arg-without-space

endif # ARCH_BINFMT_FLAT