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 EC87FA0533; Fri, 24 Jan 2020 16:34:10 +0100 (CET) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 99BD02BDB; Fri, 24 Jan 2020 16:34:09 +0100 (CET) Received: from mail-wr1-f68.google.com (mail-wr1-f68.google.com [209.85.221.68]) by dpdk.org (Postfix) with ESMTP id 8AEEE2BD5 for ; Fri, 24 Jan 2020 16:34:08 +0100 (CET) Received: by mail-wr1-f68.google.com with SMTP id d16so2458801wre.10 for ; Fri, 24 Jan 2020 07:34:08 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=6wind.com; s=google; h=date:from:to:cc:subject:message-id:references:mime-version :content-disposition:in-reply-to:user-agent; bh=X8WLiiK1vRPuS3q24zL1LTuWwKo8cvDJOCqVkUzdHjM=; b=afQpBXEpR4Se6Q4DYrPKIg2KWjJFvuhjBle0SsxpUX9Fsdw44NqPUNTrkSKjn9XoaQ MTGsJm3PsEbogPKzB4HcFuuSoJFPev/t87afqTOmYFv41G70+3HMuWAJAw1R9fvtPhkr NwmZuSPGYfDrGk1+pK5C++m6E8Nrx6EyGIjPCoECmrb65IBcy5i6kJtyIHaBwm3VmdR+ 0/dFRVcn0pXvyHg0+SCrc1+CUfpX4mkWo4PMAKMC+4l8GXiTPEYM7XWorEkp/wd4cnxK UyQQQ09ZbkbA22mVjlUe/ls6XJHROXxWE16PoyVavF4mcdGq8PLnBiP1vck1578q/sQt RGLA== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:date:from:to:cc:subject:message-id:references :mime-version:content-disposition:in-reply-to:user-agent; bh=X8WLiiK1vRPuS3q24zL1LTuWwKo8cvDJOCqVkUzdHjM=; b=fAhFKdOthmCBN17uuf2O82v27i54HRgLRiAr5dKUIS6Qpq9KbXJfTzZ1YEGUWOgVO6 wbm2SbBWFzGp47iVcGJaBgZRw35imdRUJtJGsxNaiLDZzcsVLckmIZVbpsrg5nJ1NK6B RNgVZ7Sp9y5F2Sn702Swqrjo8tI4AjTx/ad+fdvdt9K1CgpErlKdwJY5vsHewBZ+tg2X AIpO8ke+kEPky8fWX8IRUpFtFLpPzL70qZrRtliaiS6fi4UxQ9PD9wSrobtkp4SRZIUG 4YEdaA/ELR4SjppuUfb68TFWJUuGI/F6IaPscMXGlQp4awPxOVLsZTvMIRb43L1CzSgZ GQlA== X-Gm-Message-State: APjAAAWJvBHCR246RGD40KwHWV2jQE6zDAW9GZm7isWh5J/DfRaK5ggo bnFjHbQY61JaryhZzGrhDvK4iw== X-Google-Smtp-Source: APXvYqwnBqaJ3Zg/NLI0GIcxeByZYlLxz2FPtaxd0je5pEhhJLSl4Ky6Gzx9Xm36hz486MjyYDmWlA== X-Received: by 2002:a05:6000:1052:: with SMTP id c18mr4869455wrx.268.1579880048148; Fri, 24 Jan 2020 07:34:08 -0800 (PST) Received: from 6wind.com (host.78.145.23.62.rev.coltfrance.com. [62.23.145.78]) by smtp.gmail.com with ESMTPSA id k7sm6931815wmi.19.2020.01.24.07.34.07 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Fri, 24 Jan 2020 07:34:07 -0800 (PST) Date: Fri, 24 Jan 2020 16:34:07 +0100 From: Robin Jarry To: Bruce Richardson Cc: dev@dpdk.org, thomas@monjalon.net Message-ID: <20200124153407.laxpb3uyhffevebz@6wind.com> References: <20200120173725.57529-1-bruce.richardson@intel.com> <20200124151052.51433-1-bruce.richardson@intel.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20200124151052.51433-1-bruce.richardson@intel.com> User-Agent: NeoMutt/20180716 Subject: Re: [dpdk-dev] [PATCH v4] 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" 2020-01-24, 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 Looks good to me. Reviewed-by: Robin Jarry -- Robin