diff options
author | Gustavo Zacarias <gustavo@zacarias.com.ar> | 2015-08-07 10:37:33 -0300 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2015-08-09 11:43:08 +0200 |
commit | 2190e90c7cf09d773a6513c0e46e64d6c797c877 (patch) | |
tree | 19aa05eca3b5956be381bba497f171dee3f57e7f /package/glibc/Config.in | |
parent | 208fc3075247e2f2226af706278d1e13f3746942 (diff) | |
download | buildroot-2190e90c7cf09d773a6513c0e46e64d6c797c877.tar.gz buildroot-2190e90c7cf09d773a6513c0e46e64d6c797c877.zip |
glibc: add version 2.22
Switch default to version 2.21 and drop 2.20.
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package/glibc/Config.in')
-rw-r--r-- | package/glibc/Config.in | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/package/glibc/Config.in b/package/glibc/Config.in index 8cc8ccef3c..72fd3dfff1 100644 --- a/package/glibc/Config.in +++ b/package/glibc/Config.in @@ -32,17 +32,15 @@ config BR2_PACKAGE_GLIBC choice prompt "glibc version" - default BR2_GLIBC_VERSION_2_20 - -config BR2_GLIBC_VERSION_2_20 - depends on !BR2_nios2 - # Broken see https://bugs.busybox.net/show_bug.cgi?id=7941 - depends on !BR2_sparc - bool "2.20" + default BR2_GLIBC_VERSION_2_21 config BR2_GLIBC_VERSION_2_21 bool "2.21" +config BR2_GLIBC_VERSION_2_22 + bool "2.22" + depends on !BR2_sparc # broken + endchoice endif @@ -51,5 +49,5 @@ config BR2_GLIBC_VERSION_STRING string default "2.18-svnr23787" if BR2_EGLIBC_VERSION_2_18 default "2.19-svnr25243" if BR2_EGLIBC_VERSION_2_19 - default "2.20" if BR2_GLIBC_VERSION_2_20 default "2.21" if BR2_GLIBC_VERSION_2_21 + default "2.22" if BR2_GLIBC_VERSION_2_22 |