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 9761AA0530; Tue, 21 Jan 2020 02:49:44 +0100 (CET) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 55C291BFCC; Tue, 21 Jan 2020 02:49:44 +0100 (CET) Received: from mga14.intel.com (mga14.intel.com [192.55.52.115]) by dpdk.org (Postfix) with ESMTP id 4FF6E1BFCB for ; Tue, 21 Jan 2020 02:49:41 +0100 (CET) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga006.fm.intel.com ([10.253.24.20]) by fmsmga103.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 20 Jan 2020 17:49:40 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.70,344,1574150400"; d="scan'208";a="426903529" Received: from dpdk-lihong-ub1604.sh.intel.com ([10.67.118.203]) by fmsmga006.fm.intel.com with ESMTP; 20 Jan 2020 17:49:40 -0800 From: lihong To: dts@dpdk.org Cc: lihong Date: Tue, 21 Jan 2020 02:22:30 +0800 Message-Id: <1579544550-12799-1-git-send-email-lihongx.ma@intel.com> X-Mailer: git-send-email 2.7.4 Subject: [dts] [PATCH V1] framework/project_dpdk: set the RTE_EAL_IGB_UIO to y by default X-BeenThere: dts@dpdk.org X-Mailman-Version: 2.1.15 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 Sender: "dts" from dpdk-20.02-rc1, disable all kmods by default, but our dts will use it, so re-enable it on framework. Signed-off-by: lihong --- framework/project_dpdk.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/framework/project_dpdk.py b/framework/project_dpdk.py index 7030abb..6cc0e67 100644 --- a/framework/project_dpdk.py +++ b/framework/project_dpdk.py @@ -213,6 +213,8 @@ class DPDKdut(Dut): if use_shared_lib == 'true' and 'Virt' not in str(self): self.send_expect("sed -i 's/CONFIG_RTE_BUILD_SHARED_LIB=n/CONFIG_RTE_BUILD_SHARED_LIB=y/g' " "config/common_base", '#') + self.send_expect("sed -i 's/CONFIG_RTE_EAL_IGB_UIO=n/CONFIG_RTE_EAL_IGB_UIO=y/g' " + "config/common_base", '#') build_install_dpdk = getattr(self, 'build_install_dpdk_%s' % self.get_os_type()) build_install_dpdk(target, extra_options) -- 2.7.4