summaryrefslogtreecommitdiffstats
path: root/toolchain/eglibc
diff options
context:
space:
mode:
authormirko <mirko@3c298f89-4303-0410-b956-a3cf2f4a3e73>2011-06-18 11:14:05 +0000
committermirko <mirko@3c298f89-4303-0410-b956-a3cf2f4a3e73>2011-06-18 11:14:05 +0000
commit2f83c80a22a2750b7812f65c2ffb99ba00a5695d (patch)
treeb18952ad0ee75c1693f66fde66bc71f1b6648f81 /toolchain/eglibc
parent62dcca9fd71eadef47b3f5dd091f5d9849140b0b (diff)
[toolchain/eglibc] add support for eglibc version 2.13
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@27215 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'toolchain/eglibc')
-rw-r--r--toolchain/eglibc/Config.in5
-rw-r--r--toolchain/eglibc/Config.version1
-rw-r--r--toolchain/eglibc/Makefile3
3 files changed, 9 insertions, 0 deletions
diff --git a/toolchain/eglibc/Config.in b/toolchain/eglibc/Config.in
index 1800d7c6d..2054e95b5 100644
--- a/toolchain/eglibc/Config.in
+++ b/toolchain/eglibc/Config.in
@@ -28,6 +28,10 @@ choice
bool "eglibc 2.12"
depends !GCC_VERSION_LLVM
+ config EGLIBC_VERSION_2_13
+ bool "eglibc 2.13"
+ depends !GCC_VERSION_LLVM
+
config EGLIBC_VERSION_TRUNK
bool "eglibc trunk"
@@ -44,6 +48,7 @@ config EGLIBC_REVISION
default "10152" if EGLIBC_VERSION_2_10
default "10454" if EGLIBC_VERSION_2_11
default "10495" if EGLIBC_VERSION_2_12
+ default "13055" if EGLIBC_VERSION_2_13
default "HEAD" if EGLIBC_VERSION_TRUNK
default ""
diff --git a/toolchain/eglibc/Config.version b/toolchain/eglibc/Config.version
index 700c40924..b3e2a15b0 100644
--- a/toolchain/eglibc/Config.version
+++ b/toolchain/eglibc/Config.version
@@ -8,4 +8,5 @@ config EGLIBC_VERSION
default "2.10.2" if EGLIBC_VERSION_2_10
default "2.11.1" if EGLIBC_VERSION_2_11
default "2.12" if EGLIBC_VERSION_2_12
+ default "2.13" if EGLIBC_VERSION_2_13
default "trunk"
diff --git a/toolchain/eglibc/Makefile b/toolchain/eglibc/Makefile
index 5d34c9553..6be809745 100644
--- a/toolchain/eglibc/Makefile
+++ b/toolchain/eglibc/Makefile
@@ -36,6 +36,9 @@ endif
ifneq ($(CONFIG_EGLIBC_VERSION_2_12),)
PKG_SOURCE_URL:=svn://svn.eglibc.org/branches/eglibc-2_12
endif
+ifneq ($(CONFIG_EGLIBC_VERSION_2_13),)
+ PKG_SOURCE_URL:=svn://svn.eglibc.org/branches/eglibc-2_13
+endif
ifneq ($(CONFIG_EGLIBC_VERSION_TRUNK),)
PKG_SOURCE_URL:=svn://svn.eglibc.org/trunk
endif