1system_ss.add(when: 'CONFIG_AHCI', if_true: files('ahci.c')) 2system_ss.add(when: 'CONFIG_AHCI_ICH9', if_true: files('ich.c')) 3system_ss.add(when: 'CONFIG_ALLWINNER_A10', if_true: files('ahci-allwinner.c')) 4system_ss.add(when: 'CONFIG_IDE_CMD646', if_true: files('cmd646.c')) 5system_ss.add(when: 'CONFIG_IDE_CORE', if_true: files('core.c', 'atapi.c')) 6system_ss.add(when: 'CONFIG_IDE_ISA', if_true: files('isa.c', 'ioport.c')) 7system_ss.add(when: 'CONFIG_IDE_MACIO', if_true: files('macio.c')) 8system_ss.add(when: 'CONFIG_IDE_MMIO', if_true: files('mmio.c')) 9system_ss.add(when: 'CONFIG_IDE_PCI', if_true: files('pci.c')) 10system_ss.add(when: 'CONFIG_IDE_PIIX', if_true: files('piix.c', 'ioport.c')) 11system_ss.add(when: 'CONFIG_IDE_QDEV', if_true: files('qdev.c')) 12system_ss.add(when: 'CONFIG_IDE_SII3112', if_true: files('sii3112.c')) 13system_ss.add(when: 'CONFIG_IDE_VIA', if_true: files('via.c')) 14system_ss.add(when: 'CONFIG_MICRODRIVE', if_true: files('microdrive.c')) 15