From patchwork Wed Dec 12 02:56:38 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Carlos Santos X-Patchwork-Id: 1011529 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.137; helo=fraxinus.osuosl.org; envelope-from=buildroot-bounces@busybox.net; receiver=) Authentication-Results: ozlabs.org; dmarc=none (p=none dis=none) header.from=datacom.com.br Received: from fraxinus.osuosl.org (smtp4.osuosl.org [140.211.166.137]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 43F1gQ4fWTz9s47 for ; Wed, 12 Dec 2018 13:57:06 +1100 (AEDT) Received: from localhost (localhost [127.0.0.1]) by fraxinus.osuosl.org (Postfix) with ESMTP id EEEE986004; Wed, 12 Dec 2018 02:57:04 +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 1usFNLQcBSHb; Wed, 12 Dec 2018 02:57:04 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by fraxinus.osuosl.org (Postfix) with ESMTP id 67C2784A6C; Wed, 12 Dec 2018 02:57:04 +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 598361C0F19 for ; Wed, 12 Dec 2018 02:57:03 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by hemlock.osuosl.org (Postfix) with ESMTP id 31FC281D43 for ; Wed, 12 Dec 2018 02:57:00 +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 eT2FbdcSUqw2 for ; Wed, 12 Dec 2018 02:56:59 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from mail.datacom.com.br (mx.datacom.ind.br [177.66.5.10]) by hemlock.osuosl.org (Postfix) with ESMTPS id DAA8C81D1F for ; Wed, 12 Dec 2018 02:56:58 +0000 (UTC) Received: from mail.datacom.com.br (localhost [127.0.0.1]) by mail.datacom.com.br (Postfix) with ESMTPS id DD86B1BA3A53 for ; Wed, 12 Dec 2018 00:57:05 -0200 (-02) Received: from localhost (localhost [127.0.0.1]) by mail.datacom.com.br (Postfix) with ESMTP id D03671BA3A4C for ; Wed, 12 Dec 2018 00:57:05 -0200 (-02) Received: from mail.datacom.com.br ([127.0.0.1]) by localhost (mail.datacom.com.br [127.0.0.1]) (amavisd-new, port 10026) with ESMTP id mrump2evxwOK for ; Wed, 12 Dec 2018 00:57:05 -0200 (-02) Received: from p7-1130br.casantos.org (unknown [177.18.141.92]) by mail.datacom.com.br (Postfix) with ESMTPSA id 6D18C1BA3A3C for ; Wed, 12 Dec 2018 00:57:05 -0200 (-02) From: Carlos Santos To: buildroot@buildroot.org Date: Wed, 12 Dec 2018 00:56:38 -0200 Message-Id: <20181212025638.19483-1-casantos@datacom.com.br> X-Mailer: git-send-email 2.19.2 MIME-Version: 1.0 Subject: [Buildroot] [PATCH] package/waf: add Config.in.host X-BeenThere: buildroot@busybox.net X-Mailman-Version: 2.1.29 Precedence: list List-Id: Discussion and development of buildroot List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: buildroot-bounces@busybox.net Sender: "buildroot" Signed-off-by: Carlos Santos --- package/Config.in.host | 1 + package/waf/Config.in.host | 6 ++++++ 2 files changed, 7 insertions(+) create mode 100644 package/waf/Config.in.host diff --git a/package/Config.in.host b/package/Config.in.host index 2211345a7b..cd9dae3a5f 100644 --- a/package/Config.in.host +++ b/package/Config.in.host @@ -66,6 +66,7 @@ menu "Host utilities" source "package/uboot-tools/Config.in.host" source "package/util-linux/Config.in.host" source "package/vboot-utils/Config.in.host" + source "package/waf/Config.in.host" source "package/xorriso/Config.in.host" source "package/zip/Config.in.host" source "package/zstd/Config.in.host" diff --git a/package/waf/Config.in.host b/package/waf/Config.in.host new file mode 100644 index 0000000000..39d5bb0fe2 --- /dev/null +++ b/package/waf/Config.in.host @@ -0,0 +1,6 @@ +config BR2_PACKAGE_HOST_WAF + bool "host waf" + help + WAF, the meta build system + + https://waf.io/