diff options
author | Mirko Vogt <mirko@openwrt.org> | 2012-04-28 20:47:48 +0000 |
---|---|---|
committer | Mirko Vogt <mirko@openwrt.org> | 2012-04-28 20:47:48 +0000 |
commit | d7efd1199d12100470dcf4e830c806bf411d0945 (patch) | |
tree | c178105d33ee171bf1abb6e117a17199ed91b488 /toolchain | |
parent | 4310c0cf92e3aada75c38a5366ea676ebb17b4cc (diff) | |
download | upstream-d7efd1199d12100470dcf4e830c806bf411d0945.tar.gz upstream-d7efd1199d12100470dcf4e830c806bf411d0945.tar.bz2 upstream-d7efd1199d12100470dcf4e830c806bf411d0945.zip |
[toolchain/eglibc] drop support for eglibc version trunk/HEAD
When selecting a specific eglibc version, it comes with a specific SVN
revision that should not be modified as it (more or less) correspond to
a tagged release. This patch disable the possibility to select a specific
SVN revision on known eglib versions.
This patch also disables the possibility to select the trunk branch of
eglibc. There are multiple reasons for that:
* trunk/HEAD may not even compile
* the OpenWrt built system makes using trunk/HEAD a difficult thing, as
OpenWRT fetches the source tree and store it in a compressed tar archive.
Subsequent build get the source from the tar archive - not from SVN,
making the use of trunk/HEAD largelly innefective.
* we cannot know the corresponding version of trunk/HEAD, meaning that
we'll face compiling issues when we'll try to copy the libc files -
unless the build system is fixed with this specific issue in mind.
Signed-off-by: Emmanuel Deloget <logout@free.fr>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@31502 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'toolchain')
-rw-r--r-- | toolchain/eglibc/Config.in | 4 | ||||
-rw-r--r-- | toolchain/eglibc/Config.version | 6 | ||||
-rw-r--r-- | toolchain/eglibc/Makefile | 3 |
3 files changed, 3 insertions, 10 deletions
diff --git a/toolchain/eglibc/Config.in b/toolchain/eglibc/Config.in index a8d3de6f53..f7df171a55 100644 --- a/toolchain/eglibc/Config.in +++ b/toolchain/eglibc/Config.in @@ -13,9 +13,6 @@ choice bool "eglibc 2.14" depends !GCC_VERSION_LLVM - config EGLIBC_VERSION_TRUNK - bool "eglibc trunk" - endchoice config EGLIBC_REVISION @@ -24,7 +21,6 @@ config EGLIBC_REVISION depends on TOOLCHAINOPTS && USE_EGLIBC default "15508" if EGLIBC_VERSION_2_13 default "16488" if EGLIBC_VERSION_2_14 - default "HEAD" if EGLIBC_VERSION_TRUNK default "" menu "eglibc configuration" diff --git a/toolchain/eglibc/Config.version b/toolchain/eglibc/Config.version index b081cec538..6f2e6a9a79 100644 --- a/toolchain/eglibc/Config.version +++ b/toolchain/eglibc/Config.version @@ -1,6 +1,6 @@ config EGLIBC_VERSION string depends on USE_EGLIBC - default "2.13" if EGLIBC_VERSION_2_13 - default "2.14.1" if EGLIBC_VERSION_2_14 - default "trunk" + default "2.13" if EGLIBC_VERSION_2_13 + default "2.14.1" if EGLIBC_VERSION_2_14 + default "2.13" diff --git a/toolchain/eglibc/Makefile b/toolchain/eglibc/Makefile index fbd9daa033..5623fcbcb8 100644 --- a/toolchain/eglibc/Makefile +++ b/toolchain/eglibc/Makefile @@ -21,9 +21,6 @@ endif ifneq ($(CONFIG_EGLIBC_VERSION_2_14),) PKG_SOURCE_URL:=svn://svn.eglibc.org/branches/eglibc-2_14 endif -ifneq ($(CONFIG_EGLIBC_VERSION_TRUNK),) - PKG_SOURCE_URL:=svn://svn.eglibc.org/trunk -endif PATCH_DIR:=./patches/$(PKG_VERSION) |