From patchwork Tue Aug 14 02:19:37 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Matt Weber X-Patchwork-Id: 957337 Return-Path: X-Original-To: incoming-buildroot@patchwork.ozlabs.org Delivered-To: patchwork-incoming-buildroot@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=pass (mailfrom) smtp.mailfrom=busybox.net (client-ip=140.211.166.133; helo=hemlock.osuosl.org; envelope-from=buildroot-bounces@busybox.net; receiver=) Authentication-Results: ozlabs.org; dmarc=none (p=none dis=none) header.from=rockwellcollins.com Received: from hemlock.osuosl.org (smtp2.osuosl.org [140.211.166.133]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 41qGWj1Fm7z9s5b for ; Tue, 14 Aug 2018 12:19:43 +1000 (AEST) Received: from localhost (localhost [127.0.0.1]) by hemlock.osuosl.org (Postfix) with ESMTP id 6FA3386C49; Tue, 14 Aug 2018 02:19:41 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from hemlock.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id h8+7ibxrNq+M; Tue, 14 Aug 2018 02:19:40 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by hemlock.osuosl.org (Postfix) with ESMTP id BA7A586BA2; Tue, 14 Aug 2018 02:19:40 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from hemlock.osuosl.org (smtp2.osuosl.org [140.211.166.133]) by ash.osuosl.org (Postfix) with ESMTP id 2512F1CEF80 for ; Tue, 14 Aug 2018 02:19:40 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by hemlock.osuosl.org (Postfix) with ESMTP id 22A0A86BA2 for ; Tue, 14 Aug 2018 02:19:40 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from hemlock.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id TLLe-Ek6xGpf for ; Tue, 14 Aug 2018 02:19:39 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from secvs02.rockwellcollins.com (secvs02.rockwellcollins.com [205.175.225.241]) by hemlock.osuosl.org (Postfix) with ESMTPS id 51A3986B07 for ; Tue, 14 Aug 2018 02:19:39 +0000 (UTC) Received: from ofwgwc03.rockwellcollins.com (HELO crulimr01.rockwellcollins.com) ([205.175.225.12]) by secvs02.rockwellcollins.com with ESMTP; 13 Aug 2018 21:19:38 -0500 X-Received: from bacon.rockwellcollins.com (unknown [192.168.6.146]) by crulimr01.rockwellcollins.com (Postfix) with ESMTP id 17B726023C; Mon, 13 Aug 2018 21:19:38 -0500 (CDT) From: Matt Weber To: buildroot@buildroot.org Date: Mon, 13 Aug 2018 21:19:37 -0500 Message-Id: <20180814021937.22330-1-matthew.weber@rockwellcollins.com> X-Mailer: git-send-email 2.17.0 Subject: [Buildroot] [PATCH] package/aircrack-ng: powerpc arch requires altivec X-BeenThere: buildroot@busybox.net X-Mailman-Version: 2.1.24 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" The powerpc support in this package requires an arch with altivec accelerator support. The package is currently just building powerpc assuming a Power8\Altivec. Fixes http://autobuild.buildroot.net/results/87e82a5e8d0b1c1ff10ec3e59d25bcd56b329075 Signed-off-by: Matthew Weber --- package/aircrack-ng/Config.in | 2 ++ 1 file changed, 2 insertions(+) diff --git a/package/aircrack-ng/Config.in b/package/aircrack-ng/Config.in index f3e2bc4ef1..48e743a174 100644 --- a/package/aircrack-ng/Config.in +++ b/package/aircrack-ng/Config.in @@ -4,6 +4,8 @@ config BR2_PACKAGE_AIRCRACK_NG depends on BR2_TOOLCHAIN_HAS_THREADS depends on BR2_INSTALL_LIBSTDCPP depends on !BR2_STATIC_LIBS # dlfcn.h + depends on BR2_POWERPC_CPU_HAS_ALTIVEC || \ + !(BR2_powerpc || BR2_powerpc64 || BR2_powerpc64le) select BR2_PACKAGE_OPENSSL if !BR2_PACKAGE_LIBGCRYPT help A set of tools for auditing wireless networks