From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id 5F066A04FA; Thu, 6 Feb 2020 03:26:13 +0100 (CET) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id A85601C217; Thu, 6 Feb 2020 03:26:12 +0100 (CET) Received: from out2-smtp.messagingengine.com (out2-smtp.messagingengine.com [66.111.4.26]) by dpdk.org (Postfix) with ESMTP id BC0231C20D for ; Thu, 6 Feb 2020 03:26:11 +0100 (CET) Received: from compute1.internal (compute1.nyi.internal [10.202.2.41]) by mailout.nyi.internal (Postfix) with ESMTP id 564AC216CA; Wed, 5 Feb 2020 21:26:11 -0500 (EST) Received: from mailfrontend2 ([10.202.2.163]) by compute1.internal (MEProxy); Wed, 05 Feb 2020 21:26:11 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=monjalon.net; h= from:to:cc:subject:date:message-id:in-reply-to:references :mime-version:content-transfer-encoding:content-type; s=mesmtp; bh=IN2pes0UseBMYPe9/39YHrltMYNyBNRjb2OD5Cmsr34=; b=UncqG7Rbpbbc XoWu8pe9SHWPOX7KvY5+eMe9RzDfJTpwCZ9wv2iU2Qp5xh7UrIv+Y003n7g6LHs9 B4IhDenrpOn0wrZXdimuGcVVBk5feyGlOckMt12QDuikdxzpVjXSYD98S3F1J3BI wIeHZ2q6NzvimvVtAnbOZjLnJRuEaVk= DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d= messagingengine.com; h=cc:content-transfer-encoding:content-type :date:from:in-reply-to:message-id:mime-version:references :subject:to:x-me-proxy:x-me-proxy:x-me-sender:x-me-sender :x-sasl-enc; s=fm2; bh=IN2pes0UseBMYPe9/39YHrltMYNyBNRjb2OD5Cmsr 34=; b=qsR++f17tYO7PDWeR1siV70aomr2vl5bZogxVfCiumDhi7gm/dc9VqaJK U4OOyBrJ4Hvi1pAkBFRPB0Sgp6RO0GAuxxue1W+W6fHfA7WVLvK6W86rTlfNIMUZ q4OyGFJUBAEZEXSHLCf0lr1Kfjlfv4oNVxwdQT24OJZKZi8CmCJ4/RQaIzVYiSoc fP5/Z0RBm1JkqLdBiMwd2mevk7Rb5S7A9+fedsNIEZcp9kwESZ7x6hWuqTGQ5BPg pACHLl85SYkZhMoCEGcJMU0Jtm6Y1PNfSzUjKy55hicYpFC9O5zq+EEgQU8tmLje FKkSrNXchZAsf05gn0yaXJgghirew== X-ME-Sender: X-ME-Proxy-Cause: gggruggvucftvghtrhhoucdtuddrgedugedrhedvgdegiecutefuodetggdotefrodftvf curfhrohhfihhlvgemucfhrghsthforghilhdpqfgfvfdpuffrtefokffrpgfnqfghnecu uegrihhlohhuthemuceftddtnecusecvtfgvtghiphhivghnthhsucdlqddutddtmdenuc fjughrpefhvffufffkjghfggfgtgesthfuredttddtvdenucfhrhhomhepvfhhohhmrghs ucfoohhnjhgrlhhonhcuoehthhhomhgrshesmhhonhhjrghlohhnrdhnvghtqeenucfkph epjeejrddufeegrddvtdefrddukeegnecuvehluhhsthgvrhfuihiivgepudenucfrrghr rghmpehmrghilhhfrhhomhepthhhohhmrghssehmohhnjhgrlhhonhdrnhgvth X-ME-Proxy: Received: from xps.localnet (184.203.134.77.rev.sfr.net [77.134.203.184]) by mail.messagingengine.com (Postfix) with ESMTPA id 034DE30607B0; Wed, 5 Feb 2020 21:26:09 -0500 (EST) From: Thomas Monjalon To: Bruce Richardson Cc: dev@dpdk.org, robin.jarry@6wind.com, amo@semihalf.com, bluca@debian.org Date: Thu, 06 Feb 2020 03:26:09 +0100 Message-ID: <5567706.UjTJXf6HLC@xps> In-Reply-To: <20200127142822.23068-1-bruce.richardson@intel.com> References: <20200120173725.57529-1-bruce.richardson@intel.com> <20200127142822.23068-1-bruce.richardson@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" Subject: Re: [dpdk-dev] [PATCH v5] build: allow using wildcards to disable drivers X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" 27/01/2020 15:28, Bruce Richardson: > Rather than having to explicitly list each and every driver to disable in a > build, we can use a small python script and the python glob library to > expand out the wildcards. This means that we can configure meson using e.g. > > meson -Ddisable_drivers=crypto/*,event/* build > > to do a build omitting all the crypto and event drivers. Explicitly > specified drivers e.g. net/i40e, work as before, and can be mixed with > wildcarded drivers as required. > > Signed-off-by: Bruce Richardson > Reviewed-by: Robin Jarry > Acked-by: Luca Boccassi Applied, thanks