config/binutils/binutils.in.2
author Cody P Schafer <dev@codyps.com>
Sun May 11 23:31:54 2014 +0200 (2014-05-11)
changeset 3319 283cebef7061
parent 3123 6a5946fbc728
permissions -rw-r--r--
cc/gcc: add 4.9.0

Signed-off-by: Cody P Schafer <dev@codyps.com>
[yann.morin.1998@free.fr: latest is now a 4.9]
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Message-Id: <5bac788539bb272893ed.1399801933@gun>
Patchwork-Id: 347774
     1 # elf2flt options
     2 
     3 if ARCH_BINFMT_FLAT
     4 
     5 comment "elf2flt"
     6 
     7 choice
     8     bool
     9     prompt "elf2flt version"
    10 
    11 config ELF2FLT_GIT
    12     bool
    13     prompt "git"
    14     help
    15       Grab the latest version of elf2flt from the CVS repository
    16 
    17 config ELF2FLT_CUSTOM
    18     bool
    19     prompt "Custom elf2flt"
    20     depends on EXPERIMENTAL
    21 
    22 endchoice
    23 
    24 config ELF2FLT_VERSION
    25     string
    26 
    27 if ELF2FLT_GIT
    28 
    29 config ELF2FLT_GIT_CSET
    30     string
    31     prompt "git cset"
    32     default "21c6a41885ad544763ccd19883c1353f3b0b7a47"
    33     help
    34       Enter the git changeset to use.
    35 
    36       The default currently points to the HEAD of the git tree.
    37 
    38 config ELF2FLT_VERSION
    39     default ELF2FLT_GIT_CSET
    40 
    41 endif # ELF2FLT_GIT
    42 
    43 if ELF2FLT_CUSTOM
    44 
    45 config ELF2FLT_VERSION
    46     default "custom"
    47 
    48 config ELF2FLT_CUSTOM_LOCATION
    49     string
    50     prompt "Full path to custom elf2flt source"
    51     default ""
    52     help
    53       Enter the path to the directory (or tarball) of your source for elf2flt,
    54       or leave blank to use default CT_CUSTOM_LOCATION_ROOT_DIR/elf2flt
    55 
    56 endif # ELF2FLT_CUSTOM
    57 
    58 config ELF2FLT_EXTRA_CONFIG_ARRAY
    59     string
    60     prompt "elf2flt extra config"
    61     default ""
    62     help
    63       Extra flags passed onto ./configure when configuring
    64       
    65       You can enter multiple arguments here, and arguments can contain spaces
    66       if they are properly quoted (or escaped, but prefer quotes). Eg.:
    67           --with-foo="1st arg with 4 spaces" --with-bar=2nd-arg-without-space
    68 
    69 endif