[dts] [PATCH 5/6] nics net_device: support Boulder Rapid network object

Yong Liu yong.liu at intel.com
Wed Feb 3 07:50:16 CET 2016


Signed-off-by: Marvin Liu <yong.liu at intel.com>

diff --git a/nics/net_device.py b/nics/net_device.py
index 2299e6f..9d9e1ac 100644
--- a/nics/net_device.py
+++ b/nics/net_device.py
@@ -835,6 +835,10 @@ def GetNicObj(crb, bus_id, devfun_id):
         # atwood nic need special initialization
         from atwood import Atwood
         obj = Atwood(crb, bus_id, devfun_id)
+    elif nic == 'boulderrapid':
+        # atwood nic need special initialization
+        from br import BoulderRapid
+        obj = BoulderRapid(crb, bus_id, devfun_id)
     else:
         obj = NetDevice(crb, bus_id, devfun_id)
 
-- 
1.9.3



More information about the dts mailing list