From patchwork Fri Jan 2 21:19:27 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Samuel Martin X-Patchwork-Id: 425049 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from whitealder.osuosl.org (whitealder.osuosl.org [140.211.166.138]) by ozlabs.org (Postfix) with ESMTP id F267A14007D for ; Sat, 3 Jan 2015 08:19:51 +1100 (AEDT) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 3908C8A863; Fri, 2 Jan 2015 21:19:51 +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 oQ6tvlNatt6y; Fri, 2 Jan 2015 21:19:46 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by whitealder.osuosl.org (Postfix) with ESMTP id EAC718A4CE; Fri, 2 Jan 2015 21:19:44 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from fraxinus.osuosl.org (fraxinus.osuosl.org [140.211.166.137]) by ash.osuosl.org (Postfix) with ESMTP id BBB961C24B7 for ; Fri, 2 Jan 2015 21:19:42 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by fraxinus.osuosl.org (Postfix) with ESMTP id B742182397 for ; Fri, 2 Jan 2015 21:19:42 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from fraxinus.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id SxNf9aL4bAOK for ; Fri, 2 Jan 2015 21:19:42 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from mail-we0-f177.google.com (mail-we0-f177.google.com [74.125.82.177]) by fraxinus.osuosl.org (Postfix) with ESMTPS id BF4B7822C2 for ; Fri, 2 Jan 2015 21:19:41 +0000 (UTC) Received: by mail-we0-f177.google.com with SMTP id q59so4906454wes.8 for ; Fri, 02 Jan 2015 13:19:40 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:cc:subject:date:message-id:in-reply-to:references; bh=3s8yh24Aq4HFfYCadqgODz1U4j1wt/YT0PzjxdrafIM=; b=GRpBsYyBmJRCOyv8f/j3UJ9nmnsChQ4GkOPBaI2pYOOEtNFGHvhsoGwVSB/PhmI1Cj bt4CrEyNlfZSmBEkKJbmfsFkPSNJH1nPws2eCVM/7y57l5GZv0RsAOmjJG/6PBTdPgRI LOGkdNnCmYxVikeHN3goCS/FAkKkz5ltgsYwOzR69AOcfQjxinqJ90wYghKidYNym8Ar p7w0DvcUjqNe0bi9KtPhTuy6tUTDhFYuc+N4hJBz8dMPi8rm+LGKA5W7EPn0tmuTW/qq ljNEspNSQuM4WxuEDQ6c3MmrfAXam7YNFicO0rdkc5oHyaHHZQVkY53BibWDagt3CZ3Q LnxA== X-Received: by 10.194.78.229 with SMTP id e5mr106485646wjx.11.1420233580465; Fri, 02 Jan 2015 13:19:40 -0800 (PST) Received: from system-laptop.localdomain (51.56.22.109.rev.sfr.net. [109.22.56.51]) by mx.google.com with ESMTPSA id q10sm56061949wjx.34.2015.01.02.13.19.39 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Fri, 02 Jan 2015 13:19:39 -0800 (PST) From: Samuel Martin To: buildroot@buildroot.org Date: Fri, 2 Jan 2015 22:19:27 +0100 Message-Id: <1420233568-10133-2-git-send-email-s.martin49@gmail.com> X-Mailer: git-send-email 2.2.1 In-Reply-To: <1420233568-10133-1-git-send-email-s.martin49@gmail.com> References: <1420233568-10133-1-git-send-email-s.martin49@gmail.com> Subject: [Buildroot] [PATCH 2/3] package/openocd: disable aice programmer on non-MMU architecture X-BeenThere: buildroot@busybox.net X-Mailman-Version: 2.1.18-1 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" aice sources use fork function, which is only available on architecture with MMU. Signed-off-by: Samuel Martin --- package/openocd/Config.in | 1 + 1 file changed, 1 insertion(+) diff --git a/package/openocd/Config.in b/package/openocd/Config.in index 1f9889c..7c140c7 100644 --- a/package/openocd/Config.in +++ b/package/openocd/Config.in @@ -76,6 +76,7 @@ config BR2_PACKAGE_OPENOCD_OPENDOUS config BR2_PACKAGE_OPENOCD_AICE bool "Andes JTAG Programmer" select BR2_PACKAGE_LIBUSB + depends on BR2_USE_MMU # use fork() depends on BR2_TOOLCHAIN_HAS_THREADS # libusb help Enable building support for the Andes JTAG