kernel-version: add linux kernel 2.6.32.71
[openwrt-14.07/.git] / toolchain / binutils / Config.in
1 # Choose binutils version.
2
3 choice
4         prompt "Binutils Version" if TOOLCHAINOPTS
5         default BINUTILS_VERSION_2_20_1 if avr32
6         default BINUTILS_VERSION_2_22 if !avr32
7         help
8           Select the version of binutils you wish to use.
9
10         config BINUTILS_VERSION_2_20_1
11                 bool "binutils 2.20.1"
12
13         config BINUTILS_VERSION_2_22
14                 depends on !avr32 || (avr32 && BROKEN)
15                 bool "binutils 2.22"
16
17         config BINUTILS_VERSION_2_23_1
18                 depends on !avr32 || (avr32 && BROKEN)
19                 bool "binutils 2.23.1"
20
21         config BINUTILS_VERSION_LINARO
22                 depends on !avr32 || (avr32 && BROKEN)
23                 bool "Linaro binutils 2.24"
24
25 endchoice
26
27 config EXTRA_BINUTILS_CONFIG_OPTIONS
28         string
29         prompt "Additional binutils configure options" if TOOLCHAINOPTS
30         default ""
31         help
32             Any additional binutils options you may want to include....
33
34 config BINUTILS_VERSION
35         string
36         prompt "Binutils Version" if (TOOLCHAINOPTS && NULL)
37         default "2.20.1"          if BINUTILS_VERSION_2_20_1
38         default "2.22"            if BINUTILS_VERSION_2_22
39         default "2.23.1"          if BINUTILS_VERSION_2_23_1
40         default "linaro"          if BINUTILS_VERSION_LINARO
41         default "2.20.1"          if avr32
42         default "2.22"