add 'lsi53c810' to the list of scsi controllers

This commit is contained in:
Dietmar Maurer 2013-12-04 09:14:33 +01:00
parent 7592289953
commit e824ec031e
2 changed files with 4 additions and 1 deletions

View File

@ -162,9 +162,11 @@ Ext.define('PVE.Utils', { statics: {
render_scsihw: function(value) {
if (!value) {
return PVE.Utils.defaultText + ' (lsi)';
return PVE.Utils.defaultText + ' (LSI 53C895A)';
} else if (value === 'lsi') {
return 'LSI 53C895A';
} else if (value === 'lsi53c810') {
return 'LSI 53C810';
} else if (value === 'megasas') {
return 'MegaRAID SAS 8708EM2';
} else if (value === 'virtio-scsi-pci') {

View File

@ -8,6 +8,7 @@ Ext.define('PVE.form.ScsiHwSelector', {
me.data = [
['', PVE.Utils.render_scsihw('')],
['lsi', PVE.Utils.render_scsihw('lsi')],
['lsi53c810', PVE.Utils.render_scsihw('lsi53c810')],
['megasas', PVE.Utils.render_scsihw('megasas')],
['virtio-scsi-pci', PVE.Utils.render_scsihw('virtio-scsi-pci')],
['pvscsi', PVE.Utils.render_scsihw('pvscsi')]