summaryrefslogtreecommitdiff
path: root/package/devel
diff options
context:
space:
mode:
authorImre Kaloz <kaloz@openwrt.org>2013-12-26 22:19:29 +0000
committerImre Kaloz <kaloz@openwrt.org>2013-12-26 22:19:29 +0000
commitac8d56250364a5f297c7c4ac2d175d3fe7d0aec2 (patch)
tree557a6c47d91e94c5d45e13d562e67ba12ba2a7e0 /package/devel
parent9739a0b41baa88c233f76b93ac01805b7b635d94 (diff)
downloadmtk-20170518-ac8d56250364a5f297c7c4ac2d175d3fe7d0aec2.zip
mtk-20170518-ac8d56250364a5f297c7c4ac2d175d3fe7d0aec2.tar.gz
mtk-20170518-ac8d56250364a5f297c7c4ac2d175d3fe7d0aec2.tar.bz2
handle the Linaro version as well
Signed-off-by: Imre Kaloz <kaloz@openwrt.org> SVN-Revision: 39164
Diffstat (limited to 'package/devel')
-rw-r--r--package/devel/binutils/Makefile19
1 files changed, 14 insertions, 5 deletions
diff --git a/package/devel/binutils/Makefile b/package/devel/binutils/Makefile
index 09710d4..9c406d9 100644
--- a/package/devel/binutils/Makefile
+++ b/package/devel/binutils/Makefile
@@ -1,5 +1,5 @@
#
-# Copyright (C) 2006-2011 OpenWrt.org
+# Copyright (C) 2006-2013 OpenWrt.org
#
# This is free software, licensed under the GNU General Public License v2.
# See /LICENSE for more information.
@@ -10,10 +10,19 @@ include $(TOPDIR)/rules.mk
PKG_NAME:=binutils
PKG_VERSION:=$(strip $(subst ",, $(CONFIG_BINUTILS_VERSION)))
#"))
-PKG_RELEASE:=5
-
-PKG_SOURCE_URL:=@GNU/binutils
-PKG_SOURCE:=binutils-$(PKG_VERSION).tar.bz2
+PKG_RELEASE:=6
+
+ifeq ($(findstring linaro, $(CONFIG_BINUTILS_VERSION)),linaro)
+ PKG_SOURCE_URL:=https://releases.linaro.org/13.06/components/toolchain/binutils-linaro/
+ PKG_REV:=2.23.2-2013.06
+ PKG_SOURCE:=$(PKG_NAME)-linaro-$(PKG_REV).tar.bz2
+ BINUTILS_DIR:=$(PKG_NAME)-2.23.2
+ PKG_BUILD_DIR:=$(BUILD_DIR_TOOLCHAIN)/$(BINUTILS_DIR)
+ PKG_VERSION:=$(PKG_REV)
+else
+ PKG_SOURCE_URL:=@GNU/binutils
+ PKG_SOURCE:=binutils-$(PKG_VERSION).tar.bz2
+endif
PKG_MD5SUM:=
PATCH_DIR:=$(TOPDIR)/toolchain/binutils/patches/$(PKG_VERSION)