config/binutils.in
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Tue Aug 14 20:11:44 2007 +0000 (2007-08-14)
changeset 330 447b203edc2e
parent 325 58e56ab91bd0
child 344 6abe7018a85a
permissions -rw-r--r--
Do a clean-up pass on the OBSOLETE features (versions):
- remove legions of those,
- remove associated patches no longer needed,
- mark then as (OBSOLETE) in the prompt;
     1 # binutils options
     2 
     3 menu "binutils"
     4 
     5 config BINUTILS_VERSION
     6     string
     7 
     8 choice
     9     bool
    10     prompt "binutils version"
    11 
    12 config BINUTILS_V_2_14
    13     bool
    14     prompt "2.14 (OBSOLETE)"
    15     depends on OBSOLETE
    16 
    17 config BINUTILS_V_2_15
    18     bool
    19     prompt "2.15 (OBSOLETE)"
    20     depends on OBSOLETE
    21 
    22 config BINUTILS_V_2_16_1
    23     bool
    24     prompt "2.16.1"
    25 
    26 config BINUTILS_V_2_17
    27     bool
    28     prompt "2.17"
    29 
    30 config BINUTILS_V_2_17_50_0_10
    31     bool
    32     prompt "2.17.50.0.10 (EXPERIMENTAL)"
    33     depends on EXPERIMENTAL
    34 
    35 config BINUTILS_V_2_17_50_0_15
    36     bool
    37     prompt "2.17.50.0.15 (EXPERIMENTAL)"
    38     depends on EXPERIMENTAL
    39 
    40 config BINUTILS_V_2_17_50_0_17
    41     bool
    42     prompt "2.17.50.0.17 (EXPERIMENTAL)"
    43     depends on EXPERIMENTAL
    44 
    45 config BINUTILS_V_2_17_50_0_18
    46     bool
    47     prompt "2.17.50.0.18 (EXPERIMENTAL)"
    48     depends on EXPERIMENTAL
    49 
    50 # CT_INSERT_VERSION_ABOVE
    51 # Don't remove above line!
    52 endchoice
    53 
    54 config BINUTILS_VERSION
    55     string
    56     default "2.14" if BINUTILS_V_2_14
    57     default "2.15" if BINUTILS_V_2_15
    58     default "2.16.1" if BINUTILS_V_2_16_1
    59     default "2.17" if BINUTILS_V_2_17
    60     default "2.17.50.0.10" if BINUTILS_V_2_17_50_0_10
    61     default "2.17.50.0.14" if BINUTILS_V_2_17_50_0_14
    62     default "2.17.50.0.17" if BINUTILS_V_2_17_50_0_17
    63     default "2.17.50.0.18" if BINUTILS_V_2_17_50_0_18
    64 # CT_INSERT_VERSION_STRING_ABOVE
    65 # Don't remove above line!
    66 
    67 config BINUTILS_EXTRA_CONFIG
    68     string
    69     prompt "binutils extra config"
    70     default ""
    71     help
    72       Extra flags passed onto ./configure when configuring
    73 
    74 endmenu