From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id F0C59A034D; Fri, 25 Feb 2022 06:43:49 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id E5CE541171; Fri, 25 Feb 2022 06:43:49 +0100 (CET) Received: from mga06.intel.com (mga06.intel.com [134.134.136.31]) by mails.dpdk.org (Postfix) with ESMTP id 5E2E54068B for ; Fri, 25 Feb 2022 06:43:48 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1645767828; x=1677303828; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=EbJvdoJw3k8oJcl3iSoS7y7b+dGGz6U+tUnLxnxotoo=; b=Xu2YRPb1w/XR7TLij6SWRbIgwHuJrlQOIKMEGWyEoW7DT5kUNVkCP6dA SFv/AdXJKpif36SlLpbKAVQVEqZ6oPXvI362gTSEUq4q9Q2KwFFCLh69B /xBh0OZ1n/JP4VYoiE4R17XcQPvMKrk1q0jP+rYViAEqaNCdaW6zDHgBB mwW+93QfDGxS+RMTe4PXCdoeKLMLfsm0erBni/ouMyAnTYu1MporoaY/J T04OqkwcD+x3TbMTGdUHsZ9q0kDl/0HQVK3Ubtu7+/ZTBAO0F2GDurMQG srqP87mXL71yN01KYJDrgnxrgPsZtnj8Phlp5n+TGtgHJpRaCoz7dx2bc w==; X-IronPort-AV: E=McAfee;i="6200,9189,10268"; a="313145105" X-IronPort-AV: E=Sophos;i="5.90,135,1643702400"; d="scan'208";a="313145105" Received: from fmsmga008.fm.intel.com ([10.253.24.58]) by orsmga104.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 24 Feb 2022 21:43:48 -0800 X-IronPort-AV: E=Sophos;i="5.90,135,1643702400"; d="scan'208";a="592347262" Received: from shwdenpg197.ccr.corp.intel.com ([10.253.109.70]) by fmsmga008-auth.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 24 Feb 2022 21:43:46 -0800 From: Jun Dong To: dts@dpdk.org Cc: lijuan.tu@intel.com, qingx.sun@intel.com, junx.dong@intel.com Subject: [dts] [V2 2/4] doc/dts_gsg: removed makefile from user guide document Date: Fri, 25 Feb 2022 13:43:35 +0800 Message-Id: <20220225054337.3668-3-junx.dong@intel.com> X-Mailer: git-send-email 2.33.1.windows.1 In-Reply-To: <20220225054337.3668-1-junx.dong@intel.com> References: <20220225054337.3668-1-junx.dong@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-BeenThere: dts@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: test suite reviews and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dts-bounces@dpdk.org Makefile builds have been deprecated, so: - remove makefile relation description from user guide document. Signed-off-by: Jun Dong --- doc/dts_gsg/usr_guide/usage.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/dts_gsg/usr_guide/usage.rst b/doc/dts_gsg/usr_guide/usage.rst index 391662f6..ba714703 100644 --- a/doc/dts_gsg/usr_guide/usage.rst +++ b/doc/dts_gsg/usr_guide/usage.rst @@ -24,7 +24,7 @@ First of all, you must configure execution.cfg as below: * crbs: IP address of the DUT. The detail information is defined in file $DTS_CFG_FOLDER/crbs.cfg. * drivername: the driver devices used by DPDK bound to. -* build_type: the tool for building DPDK, it can be meson and makefile. DPDK 20.11+ only uses meson and ninja. +* build_type: the tool for building DPDK, it can be meson. * rx_mode: vector instructions used in tests, it can be novector/sse/avx2/avx512. it is optional, if not set, dpdk uses avx2 by default. * test_suites: test suites and cases that to be executed. use ``:`` to separate suite and it's cases and use ``\`` to separate different cases. * targets: DPDK targets to be tested. -- 2.33.1.windows.1