819946d275
The DSCM-1XXXX microdrive device model was used only by the XScale-based Zaurus machine types. Now they have been removed, we can delete this device too. Signed-off-by: Peter Maydell <peter.maydell@linaro.org> Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org> Message-id: 20241003140010.1653808-4-peter.maydell@linaro.org
16 lines
1.0 KiB
Meson
16 lines
1.0 KiB
Meson
system_ss.add(when: 'CONFIG_AHCI', if_true: files('ahci.c'))
|
|
system_ss.add(when: 'CONFIG_AHCI_ICH9', if_true: files('ich.c'))
|
|
system_ss.add(when: 'CONFIG_ALLWINNER_A10', if_true: files('ahci-allwinner.c'))
|
|
system_ss.add(when: 'CONFIG_IDE_BUS', if_true: files('ide-bus.c'))
|
|
system_ss.add(when: 'CONFIG_IDE_CF', if_true: files('cf.c'))
|
|
system_ss.add(when: 'CONFIG_IDE_CMD646', if_true: files('cmd646.c'))
|
|
system_ss.add(when: 'CONFIG_IDE_CORE', if_true: files('core.c', 'atapi.c'))
|
|
system_ss.add(when: 'CONFIG_IDE_DEV', if_true: files('ide-dev.c'))
|
|
system_ss.add(when: 'CONFIG_IDE_ISA', if_true: files('isa.c', 'ioport.c'))
|
|
system_ss.add(when: 'CONFIG_IDE_MACIO', if_true: files('macio.c'))
|
|
system_ss.add(when: 'CONFIG_IDE_MMIO', if_true: files('mmio.c'))
|
|
system_ss.add(when: 'CONFIG_IDE_PCI', if_true: files('pci.c'))
|
|
system_ss.add(when: 'CONFIG_IDE_PIIX', if_true: files('piix.c', 'ioport.c'))
|
|
system_ss.add(when: 'CONFIG_IDE_SII3112', if_true: files('sii3112.c'))
|
|
system_ss.add(when: 'CONFIG_IDE_VIA', if_true: files('via.c'))
|