Revision: 1720
http://inq.svn.sourceforge.net/inq/?rev=1720&view=rev
Author: andrew_sapronov
Date: 2009-10-30 12:24:36 +0000 (Fri, 30 Oct 2009)
Log Message:
-----------
Added PCI ID and RAID levels for Adaptec 51645 (http://www.adaptec.com/en-US/products/Controllers/Hardware/sas/performance/SAS-51645/)
Modified Paths:
--------------
trunk/client/lib/einarc/src/raid/adaptec_arcconf.rb
Modified: trunk/client/lib/einarc/src/raid/adaptec_arcconf.rb
===================================================================
--- trunk/client/lib/einarc/src/raid/adaptec_arcconf.rb 2009-10-28 15:29:07 UTC (rev 1719)
+++ trunk/client/lib/einarc/src/raid/adaptec_arcconf.rb 2009-10-30 12:24:36 UTC (rev 1720)
@@ -10,6 +10,7 @@
PCI_IDS = {
'Adaptec 3805' => ['9005', '0285', '9005', '02bc'],
'Adaptec 5805' => ['9005', '0285', '9005', '02b6'],
+ 'Adaptec 51645' => ['9005', '0285', '9005', '02cf'],
'Adaptec 2230S' => ['9005', '0286', '9005', '028c'],
'Adaptec 5405' => ['9005', '0285', '9005', '02d1'],
'Adaptec 2405' => ['9005', '0285', '9005', '02d5'],
@@ -355,11 +356,12 @@
def get_adapter_raidlevels(x = nil)
levels = {
- 'Adaptec 3805' => [ 'linear', 'passthrough', '0', '1', '1E', '5', '5EE', '6', '10', '50', '60' ],
- 'Adaptec 5805' => [ 'linear', 'passthrough', '0', '1', '1E', '5', '5EE', '6', '10', '50', '60' ],
- 'Adaptec 5405' => [ 'linear', 'passthrough', '0', '1', '1E', '5', '5EE', '6', '10', '50', '60' ],
- 'Adaptec 2230S' => [ 'linear', 'passthrough', '0', '1', '5', '10', '50' ],
- 'Adaptec 2405' => [ 'linear', 'passthrough', '0', '1', '10' ],
+ 'Adaptec 3805' => [ 'linear', 'passthrough', '0', '1', '1E', '5', '5EE', '6', '10', '50', '60' ],
+ 'Adaptec 5805' => [ 'linear', 'passthrough', '0', '1', '1E', '5', '5EE', '6', '10', '50', '60' ],
+ 'Adaptec 51645' => [ 'linear', 'passthrough', '0', '1', '1E', '5', '5EE', '6', '10', '50', '60' ],
+ 'Adaptec 5405' => [ 'linear', 'passthrough', '0', '1', '1E', '5', '5EE', '6', '10', '50', '60' ],
+ 'Adaptec 2230S' => [ 'linear', 'passthrough', '0', '1', '5', '10', '50' ],
+ 'Adaptec 2405' => [ 'linear', 'passthrough', '0', '1', '10' ],
}
model = AdaptecArcConf.query( [] )[0][:model]
return (levels.has_key? model) ? levels[model] : [ 'linear', 'passthrough', '0', '1', '5' ]
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|