config/binutils/elf2flt.in
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Wed Nov 30 00:25:22 2011 +0100 (2011-11-30)
changeset 2788 b6faa28e76e0
parent 2467 200836977ce6
child 3090 a221c86d9b33
permissions -rw-r--r--
arch: rename the SUPPORT_XXX options

First, 'SUPPORT' should be spelled 'SUPPORTS'.

Second, 'SUPPORT_XXX' really means 'supports --with-xxx', so rename the
affected options accordingly. Update the affected archs to match the new
namings.

Reported-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
yann@1345
     1
# elf2flt options
yann@1345
     2
yann@1345
     3
if ARCH_BINFMT_FLAT
yann@1345
     4
yann@1345
     5
comment "elf2flt"
yann@1345
     6
yann@1345
     7
choice
yann@1345
     8
    bool
yann@1345
     9
    prompt "elf2flt version"
yann@1535
    10
# Don't remove next line
yann@1535
    11
# CT_INSERT_VERSION_BELOW
yann@1345
    12
yann@1345
    13
config ELF2FLT_CVSHEAD
yann@1345
    14
    bool
yann@1345
    15
    prompt "CVS Head"
yann@1345
    16
    help
yann@1345
    17
      Grab the latest version of elf2flt from the CVS repository
yann@1345
    18
yann@1345
    19
config ELF2FLT_CVS_SNAPSHOT
yann@1345
    20
    bool
yann@1345
    21
    prompt "CVS Snapshot"
yann@1345
    22
yann@1345
    23
endchoice
yann@1345
    24
yann@1345
    25
config ELF2FLT_CVS_SNAPSHOT_SPEC
yann@1345
    26
    string
yann@1345
    27
    depends on ELF2FLT_CVS_SNAPSHOT
yann@1345
    28
    default ""
yann@1345
    29
    prompt "CVS refspec for elf2flt"
yann@1345
    30
    help
yann@1345
    31
       What you enter here will be passed verbatim to the cvs checkout command
yann@1345
    32
       so be careful!
yann@1345
    33
yann@1345
    34
config ELF2FLT_VERSION
yann@1345
    35
    string
yann@1345
    36
    default "head" if ELF2FLT_CVSHEAD
yann@1535
    37
# Don't remove next line
yann@1535
    38
# CT_INSERT_VERSION_STRING_BELOW
yann@1345
    39
yann@2467
    40
config ELF2FLT_EXTRA_CONFIG_ARRAY
yann@1345
    41
    string
yann@1345
    42
    prompt "elf2flt extra config"
yann@1345
    43
    default ""
yann@1345
    44
    help
yann@1345
    45
      Extra flags passed onto ./configure when configuring
yann@2469
    46
      
yann@2469
    47
      You can enter multiple arguments here, and arguments can contain spaces
yann@2469
    48
      if they are properly quoted (or escaped, but prefer quotes). Eg.:
yann@2469
    49
          --with-foo="1st arg with 4 spaces" --with-bar=2nd-arg-without-space
yann@1345
    50
yann@1345
    51
endif