2023-06-13 16:33:47 +03:00
|
|
|
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'))
|
2024-02-20 11:55:00 +03:00
|
|
|
system_ss.add(when: 'CONFIG_IDE_BUS', if_true: files('ide-bus.c'))
|
2024-02-20 11:54:59 +03:00
|
|
|
system_ss.add(when: 'CONFIG_IDE_CF', if_true: files('cf.c'))
|
2023-06-13 16:33:47 +03:00
|
|
|
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'))
|
2024-02-20 11:55:00 +03:00
|
|
|
system_ss.add(when: 'CONFIG_IDE_DEV', if_true: files('ide-dev.c'))
|
2023-06-13 16:33:47 +03:00
|
|
|
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'))
|