Commit 51482673 authored by Dietmar Maurer's avatar Dietmar Maurer

add 'lsi53c810' to the list of scsi controllers

parent ac1b223a
......@@ -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') {
......
......@@ -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')]
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment