From patchwork Mon Apr 22 11:37:26 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Mischa Jonker X-Patchwork-Id: 238473 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from silver.osuosl.org (silver.osuosl.org [140.211.166.136]) by ozlabs.org (Postfix) with ESMTP id F28492C0128 for ; Mon, 22 Apr 2013 21:39:14 +1000 (EST) Received: from localhost (localhost [127.0.0.1]) by silver.osuosl.org (Postfix) with ESMTP id 7751C317E3; Mon, 22 Apr 2013 11:39:13 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from silver.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id dCBy3RCEbhai; Mon, 22 Apr 2013 11:39:04 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by silver.osuosl.org (Postfix) with ESMTP id 5F9D031805; Mon, 22 Apr 2013 11:38:55 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from whitealder.osuosl.org (whitealder.osuosl.org [140.211.166.138]) by ash.osuosl.org (Postfix) with ESMTP id D10FE8F7A0 for ; Mon, 22 Apr 2013 11:38:54 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id D5F4980819 for ; Mon, 22 Apr 2013 11:38:55 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from whitealder.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id ADrLFR2qH3lG for ; Mon, 22 Apr 2013 11:38:55 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from hermes.synopsys.com (us01smtp3.synopsys.com [198.182.44.81]) by whitealder.osuosl.org (Postfix) with ESMTP id 2A62780057 for ; Mon, 22 Apr 2013 11:38:55 +0000 (UTC) Received: from mailhost.synopsys.com (mailhost3.synopsys.com [10.12.238.238]) by hermes.synopsys.com (Postfix) with ESMTP id DFE20F2FD for ; Mon, 22 Apr 2013 04:38:45 -0700 (PDT) Received: from mailhost.synopsys.com (localhost [127.0.0.1]) by mailhost.synopsys.com (Postfix) with ESMTP id D2453E12; Mon, 22 Apr 2013 04:38:45 -0700 (PDT) Received: from localhost.localdomain (nl-droid1.internal.synopsys.com [10.100.24.228]) by mailhost.synopsys.com (Postfix) with ESMTP id 169A0E09; Mon, 22 Apr 2013 04:38:44 -0700 (PDT) From: Mischa Jonker To: buildroot@busybox.net Date: Mon, 22 Apr 2013 13:37:26 +0200 Message-Id: <1366630651-6857-3-git-send-email-mjonker@synopsys.com> X-Mailer: git-send-email 1.7.0.4 In-Reply-To: <1366630651-6857-1-git-send-email-mjonker@synopsys.com> References: <1366630651-6857-1-git-send-email-mjonker@synopsys.com> Cc: Mischa Jonker Subject: [Buildroot] [PATCH 2/7] arc: Add option for ARC-specific download site X-BeenThere: buildroot@busybox.net X-Mailman-Version: 2.1.14 Precedence: list List-Id: Discussion and development of buildroot List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: buildroot-bounces@busybox.net Sender: buildroot-bounces@busybox.net As ARC support is not yet in all upstream packages, a different location is required to download the packages from. This adds an option to specify a site for ARC-specific versions of packages such as binutils, gcc. When ARC support has been upstreamed for all packages, this option can be removed again. Signed-off-by: Mischa Jonker --- Config.in | 9 +++++++++ 1 files changed, 9 insertions(+), 0 deletions(-) diff --git a/Config.in b/Config.in index bbb9885..c365b38 100644 --- a/Config.in +++ b/Config.in @@ -141,6 +141,15 @@ config BR2_PRIMARY_SITE NOTE: This works for all packages using the central package infrastructure (generic, autotools, cmake, ...) +config BR2_ARC_SITE + string "Download site for ARC specific packages" + default "http://www.synopsys.com/apps/arc-developer/" + depends on BR2_arc || BR2_arceb + help + This download site is used for packages that require specific + support for ARC, while this support is not yet pushed to the + respective open source project. + config BR2_PRIMARY_SITE_ONLY bool "Only allow downloads from primary download site" depends on BR2_PRIMARY_SITE != ""