mirror of
https://git.proxmox.com/git/pve-manager
synced 2025-08-04 09:42:50 +00:00
add 'lsi53c810' to the list of scsi controllers
This commit is contained in:
parent
7592289953
commit
e824ec031e
@ -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')]
|
||||
|
Loading…
Reference in New Issue
Block a user