config/binutils.in
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Thu Apr 17 20:26:25 2008 +0000 (2008-04-17)
changeset 446 d205527c5e01
parent 402 197e1b49586e
child 458 17f3122a2864
permissions -rw-r--r--
Move config files around, and clean up the mess in the config/ directory.

config/kernel/kernel_linux.in | 12 6 6 0 +-
config/paths.in | 89 0 89 0 ----------------
config/kernel_linux_headers_install.in | 168 0 168 0 ------------------------------
config/kernel.in | 2 1 1 0
config/kernel_linux_headers_copy.in | 42 0 42 0 --------
config/cc.in | 2 1 1 0
config/logging.in | 110 0 110 0 --------------------
config/build-behave.in | 45 0 45 0 --------
config/libc_uClibc.in | 101 0 101 0 ------------------
config/kernel_linux_headers_sanitised.in | 62 0 62 0 -----------
config/ct-behave.in | 82 0 82 0 ---------------
config/kernel_linux.in | 134 0 134 0 ------------------------
config/global.in | 10 5 5 0 +-
config/download_extract.in | 171 0 171 0 -------------------------------
config/cc_gcc.in | 130 0 130 0 ------------------------
config/libc_glibc.in | 124 0 124 0 ----------------------
config/libc.in | 4 2 2 0
17 files changed, 15 insertions(+), 1273 deletions(-)
     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_18
    31     bool
    32     prompt "2.18"
    33 
    34 config BINUTILS_V_2_18_50_0_1
    35     bool
    36     prompt "2.18.50.0.1 (EXPERIMENTAL)"
    37     depends on EXPERIMENTAL
    38 
    39 config BINUTILS_V_2_18_50_0_2
    40     bool
    41     prompt "2.18.50.0.2 (EXPERIMENTAL)"
    42     depends on EXPERIMENTAL
    43 
    44 config BINUTILS_V_2_18_50_0_3
    45     bool
    46     prompt "2.18.50.0.3 (EXPERIMENTAL)"
    47     depends on EXPERIMENTAL
    48 
    49 config BINUTILS_V_2_18_50_0_4
    50     bool
    51     prompt "2.18.50.0.4 (EXPERIMENTAL)"
    52     depends on EXPERIMENTAL
    53 
    54 # CT_INSERT_VERSION_ABOVE
    55 # Don't remove above line!
    56 endchoice
    57 
    58 config BINUTILS_VERSION
    59     string
    60     default "2.14" if BINUTILS_V_2_14
    61     default "2.15" if BINUTILS_V_2_15
    62     default "2.16.1" if BINUTILS_V_2_16_1
    63     default "2.17" if BINUTILS_V_2_17
    64     default "2.18" if BINUTILS_V_2_18
    65     default "2.18.50.0.1" if BINUTILS_V_2_18_50_0_1
    66     default "2.18.50.0.2" if BINUTILS_V_2_18_50_0_2
    67     default "2.18.50.0.3" if BINUTILS_V_2_18_50_0_3
    68     default "2.18.50.0.4" if BINUTILS_V_2_18_50_0_4
    69 # CT_INSERT_VERSION_STRING_ABOVE
    70 # Don't remove above line!
    71 
    72 config BINUTILS_EXTRA_CONFIG
    73     string
    74     prompt "binutils extra config"
    75     default ""
    76     help
    77       Extra flags passed onto ./configure when configuring
    78 
    79 endmenu