From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga11.intel.com (mga11.intel.com [192.55.52.93]) by dpdk.org (Postfix) with ESMTP id 935B99A9A for ; Wed, 11 Feb 2015 13:43:46 +0100 (CET) Received: from orsmga002.jf.intel.com ([10.7.209.21]) by fmsmga102.fm.intel.com with ESMTP; 11 Feb 2015 04:43:44 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.09,558,1418112000"; d="scan'208";a="684185399" Received: from shvmail01.sh.intel.com ([10.239.29.42]) by orsmga002.jf.intel.com with ESMTP; 11 Feb 2015 04:43:44 -0800 Received: from shecgisg004.sh.intel.com (shecgisg004.sh.intel.com [10.239.29.89]) by shvmail01.sh.intel.com with ESMTP id t1BChfJM028830; Wed, 11 Feb 2015 20:43:41 +0800 Received: from shecgisg004.sh.intel.com (localhost [127.0.0.1]) by shecgisg004.sh.intel.com (8.13.6/8.13.6/SuSE Linux 0.8) with ESMTP id t1BChbaV014939; Wed, 11 Feb 2015 20:43:39 +0800 Received: (from dayuqiu@localhost) by shecgisg004.sh.intel.com (8.13.6/8.13.6/Submit) id t1BChbwg014935; Wed, 11 Feb 2015 20:43:37 +0800 From: Michael Qiu To: dts@dpdk.org Date: Wed, 11 Feb 2015 20:43:36 +0800 Message-Id: <1423658616-14903-1-git-send-email-michael.qiu@intel.com> X-Mailer: git-send-email 1.7.4.1 Subject: [dts] [PATCH] framework: Add Intel new NIC support 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: , X-List-Received-Date: Wed, 11 Feb 2015 12:43:47 -0000 Red Rock Canyou is one new NIC of Intel, kernel driver is named fm10k. This patch only add base support for this NIC, so that the framework can identify this NIC. Signed-off-by: Michael Qiu --- framework/settings.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/framework/settings.py b/framework/settings.py index 23b5788..ba9b5f5 100644 --- a/framework/settings.py +++ b/framework/settings.py @@ -58,7 +58,7 @@ NICS = { 'fortville_eagle': '8086:1572', 'fortville_spirit': '8086:1583', 'fortville_spirit_single': '8086:1584', - 'rubyrappid': '8086:15a4', + 'redrockcanyou': '8086:15a4', } DRIVERS = { @@ -87,7 +87,7 @@ DRIVERS = { 'fortville_eagle': 'i40e', 'fortville_spirit': 'i40e', 'fortville_spirit_single':'i40e', - 'rubyrappid': 'fm10k', + 'redrockcanyou': 'fm10k', } """ -- 1.9.3