]> git.ipfire.org Git - thirdparty/qemu.git/commitdiff
hw/scsi: Add config option for new ncr710 driver
authorSoumyajyotii Ssarkar <soumyajyotisarkar23@gmail.com>
Tue, 14 Oct 2025 20:46:15 +0000 (22:46 +0200)
committerHelge Deller <deller@gmx.de>
Mon, 27 Oct 2025 21:13:22 +0000 (22:13 +0100)
Add config option and wire up in meson makefile.

Signed-off-by: Soumyajyotii Ssarkar <soumyajyotisarkar23@gmail.com>
Signed-off-by: Helge Deller <deller@gmx.de>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
hw/scsi/Kconfig
hw/scsi/meson.build

index 1feab84c4c58fd5a152fee5ee651df144a430c3d..5743ee9b4d8c262367c9646850ea5d864859cda5 100644 (file)
@@ -7,6 +7,11 @@ config LSI_SCSI_PCI
     depends on PCI
     select SCSI
 
+config NCR710_SCSI
+    bool
+    default y if LASI
+    select SCSI
+
 config MPTSAS_SCSI_PCI
     bool
     default y if PCI_DEVICES
index bb7d289aa02083543253e4b506d31729247a81e4..b874fe1ecdb264d89d53c8ac115f8f3734eef726 100644 (file)
@@ -12,6 +12,7 @@ scsi_ss.add(files(
 scsi_ss.add(when: 'CONFIG_ESP', if_true: files('esp.c'))
 scsi_ss.add(when: 'CONFIG_ESP_PCI', if_true: files('esp-pci.c'))
 scsi_ss.add(when: 'CONFIG_LSI_SCSI_PCI', if_true: files('lsi53c895a.c'))
+scsi_ss.add(when: 'CONFIG_NCR710_SCSI', if_true: files('ncr53c710.c', 'lasi_ncr710.c'))
 scsi_ss.add(when: 'CONFIG_MEGASAS_SCSI_PCI', if_true: files('megasas.c'))
 scsi_ss.add(when: 'CONFIG_MPTSAS_SCSI_PCI', if_true: files('mptsas.c', 'mptconfig.c', 'mptendian.c'))
 scsi_ss.add(when: 'CONFIG_VMW_PVSCSI_SCSI_PCI', if_true: files('vmw_pvscsi.c'))