mirror of
https://gitlab.com/qemu-project/qemu
synced 2024-11-02 20:37:48 +00:00
de6cd7599b
We use the user_ss[] array to hold the user emulation sources, and the softmmu_ss[] array to hold the system emulation ones. Hold the latter in the 'system_ss[]' array for parity with user emulation. Mechanical change doing: $ sed -i -e s/softmmu_ss/system_ss/g $(git grep -l softmmu_ss) Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org> Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Message-Id: <20230613133347.82210-10-philmd@linaro.org> Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
14 lines
970 B
Meson
14 lines
970 B
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_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_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_QDEV', if_true: files('qdev.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'))
|
|
system_ss.add(when: 'CONFIG_MICRODRIVE', if_true: files('microdrive.c'))
|