add support for eglibc version 2.13

SVN-Revision: 27215
lede-17.01
Mirko Vogt 2011-06-18 11:14:05 +00:00
parent cdbb7815ea
commit 7493d8260f
3 changed files with 9 additions and 0 deletions

View File

@ -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 ""

View File

@ -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"

View File

@ -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