Browse Source
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>pull/240/head
committed by
Richard Henderson
101 changed files with 714 additions and 714 deletions
@ -1,6 +1,6 @@ |
|||
if have_tpm |
|||
softmmu_ss.add(files('tpm_backend.c')) |
|||
softmmu_ss.add(files('tpm_util.c')) |
|||
softmmu_ss.add(when: 'CONFIG_TPM_PASSTHROUGH', if_true: files('tpm_passthrough.c')) |
|||
softmmu_ss.add(when: 'CONFIG_TPM_EMULATOR', if_true: files('tpm_emulator.c')) |
|||
system_ss.add(files('tpm_backend.c')) |
|||
system_ss.add(files('tpm_util.c')) |
|||
system_ss.add(when: 'CONFIG_TPM_PASSTHROUGH', if_true: files('tpm_passthrough.c')) |
|||
system_ss.add(when: 'CONFIG_TPM_EMULATOR', if_true: files('tpm_emulator.c')) |
|||
endif |
|||
|
|||
@ -1,2 +1,2 @@ |
|||
softmmu_ss.add(files('block-hmp-cmds.c')) |
|||
system_ss.add(files('block-hmp-cmds.c')) |
|||
block_ss.add(files('bitmap-qmp-cmds.c')) |
|||
|
|||
@ -1,2 +1,2 @@ |
|||
softmmu_ss.add([files('dump.c', 'dump-hmp-cmds.c'), snappy, lzo]) |
|||
system_ss.add([files('dump.c', 'dump-hmp-cmds.c'), snappy, lzo]) |
|||
specific_ss.add(when: 'CONFIG_SYSTEM_ONLY', if_true: files('win_dump.c')) |
|||
|
|||
@ -1 +1 @@ |
|||
softmmu_ss.add(when: libbpf, if_true: files('ebpf_rss.c'), if_false: files('ebpf_rss-stub.c')) |
|||
system_ss.add(when: libbpf, if_true: files('ebpf_rss.c'), if_false: files('ebpf_rss-stub.c')) |
|||
|
|||
@ -1,5 +1,5 @@ |
|||
softmmu_ss.add(when: 'CONFIG_STM32F2XX_ADC', if_true: files('stm32f2xx_adc.c')) |
|||
softmmu_ss.add(when: 'CONFIG_ASPEED_SOC', if_true: files('aspeed_adc.c')) |
|||
softmmu_ss.add(when: 'CONFIG_NPCM7XX', if_true: files('npcm7xx_adc.c')) |
|||
softmmu_ss.add(when: 'CONFIG_ZYNQ', if_true: files('zynq-xadc.c')) |
|||
softmmu_ss.add(when: 'CONFIG_MAX111X', if_true: files('max111x.c')) |
|||
system_ss.add(when: 'CONFIG_STM32F2XX_ADC', if_true: files('stm32f2xx_adc.c')) |
|||
system_ss.add(when: 'CONFIG_ASPEED_SOC', if_true: files('aspeed_adc.c')) |
|||
system_ss.add(when: 'CONFIG_NPCM7XX', if_true: files('npcm7xx_adc.c')) |
|||
system_ss.add(when: 'CONFIG_ZYNQ', if_true: files('zynq-xadc.c')) |
|||
system_ss.add(when: 'CONFIG_MAX111X', if_true: files('max111x.c')) |
|||
|
|||
@ -1,14 +1,14 @@ |
|||
softmmu_ss.add(files('soundhw.c')) |
|||
softmmu_ss.add(when: 'CONFIG_AC97', if_true: files('ac97.c')) |
|||
softmmu_ss.add(when: 'CONFIG_ADLIB', if_true: files('fmopl.c', 'adlib.c')) |
|||
softmmu_ss.add(when: 'CONFIG_CS4231', if_true: files('cs4231.c')) |
|||
softmmu_ss.add(when: 'CONFIG_CS4231A', if_true: files('cs4231a.c')) |
|||
softmmu_ss.add(when: 'CONFIG_ES1370', if_true: files('es1370.c')) |
|||
softmmu_ss.add(when: 'CONFIG_GUS', if_true: files('gus.c', 'gusemu_hal.c', 'gusemu_mixer.c')) |
|||
softmmu_ss.add(when: 'CONFIG_HDA', if_true: files('intel-hda.c', 'hda-codec.c')) |
|||
softmmu_ss.add(when: 'CONFIG_MARVELL_88W8618', if_true: files('marvell_88w8618.c')) |
|||
softmmu_ss.add(when: 'CONFIG_PCSPK', if_true: files('pcspk.c')) |
|||
softmmu_ss.add(when: 'CONFIG_PL041', if_true: files('pl041.c', 'lm4549.c')) |
|||
softmmu_ss.add(when: 'CONFIG_SB16', if_true: files('sb16.c')) |
|||
softmmu_ss.add(when: 'CONFIG_VT82C686', if_true: files('via-ac97.c')) |
|||
softmmu_ss.add(when: 'CONFIG_WM8750', if_true: files('wm8750.c')) |
|||
system_ss.add(files('soundhw.c')) |
|||
system_ss.add(when: 'CONFIG_AC97', if_true: files('ac97.c')) |
|||
system_ss.add(when: 'CONFIG_ADLIB', if_true: files('fmopl.c', 'adlib.c')) |
|||
system_ss.add(when: 'CONFIG_CS4231', if_true: files('cs4231.c')) |
|||
system_ss.add(when: 'CONFIG_CS4231A', if_true: files('cs4231a.c')) |
|||
system_ss.add(when: 'CONFIG_ES1370', if_true: files('es1370.c')) |
|||
system_ss.add(when: 'CONFIG_GUS', if_true: files('gus.c', 'gusemu_hal.c', 'gusemu_mixer.c')) |
|||
system_ss.add(when: 'CONFIG_HDA', if_true: files('intel-hda.c', 'hda-codec.c')) |
|||
system_ss.add(when: 'CONFIG_MARVELL_88W8618', if_true: files('marvell_88w8618.c')) |
|||
system_ss.add(when: 'CONFIG_PCSPK', if_true: files('pcspk.c')) |
|||
system_ss.add(when: 'CONFIG_PL041', if_true: files('pl041.c', 'lm4549.c')) |
|||
system_ss.add(when: 'CONFIG_SB16', if_true: files('sb16.c')) |
|||
system_ss.add(when: 'CONFIG_VT82C686', if_true: files('via-ac97.c')) |
|||
system_ss.add(when: 'CONFIG_WM8750', if_true: files('wm8750.c')) |
|||
|
|||
@ -1,6 +1,6 @@ |
|||
softmmu_ss.add(files('core.c', 'cluster.c')) |
|||
system_ss.add(files('core.c', 'cluster.c')) |
|||
|
|||
softmmu_ss.add(when: 'CONFIG_ARM11MPCORE', if_true: files('arm11mpcore.c')) |
|||
softmmu_ss.add(when: 'CONFIG_REALVIEW', if_true: files('realview_mpcore.c')) |
|||
system_ss.add(when: 'CONFIG_ARM11MPCORE', if_true: files('arm11mpcore.c')) |
|||
system_ss.add(when: 'CONFIG_REALVIEW', if_true: files('realview_mpcore.c')) |
|||
specific_ss.add(when: 'CONFIG_A9MPCORE', if_true: files('a9mpcore.c')) |
|||
specific_ss.add(when: 'CONFIG_A15MPCORE', if_true: files('a15mpcore.c')) |
|||
|
|||
@ -1,16 +1,16 @@ |
|||
softmmu_ss.add(when: 'CONFIG_RC4030', if_true: files('rc4030.c')) |
|||
softmmu_ss.add(when: 'CONFIG_PL080', if_true: files('pl080.c')) |
|||
softmmu_ss.add(when: 'CONFIG_PL330', if_true: files('pl330.c')) |
|||
softmmu_ss.add(when: 'CONFIG_I82374', if_true: files('i82374.c')) |
|||
softmmu_ss.add(when: 'CONFIG_I8257', if_true: files('i8257.c')) |
|||
softmmu_ss.add(when: 'CONFIG_XILINX_AXI', if_true: files('xilinx_axidma.c')) |
|||
softmmu_ss.add(when: 'CONFIG_ZYNQ_DEVCFG', if_true: files('xlnx-zynq-devcfg.c')) |
|||
softmmu_ss.add(when: 'CONFIG_ETRAXFS', if_true: files('etraxfs_dma.c')) |
|||
softmmu_ss.add(when: 'CONFIG_STP2000', if_true: files('sparc32_dma.c')) |
|||
softmmu_ss.add(when: 'CONFIG_XLNX_ZYNQMP_ARM', if_true: files('xlnx_dpdma.c')) |
|||
softmmu_ss.add(when: 'CONFIG_XLNX_ZDMA', if_true: files('xlnx-zdma.c')) |
|||
softmmu_ss.add(when: 'CONFIG_OMAP', if_true: files('omap_dma.c', 'soc_dma.c')) |
|||
softmmu_ss.add(when: 'CONFIG_PXA2XX', if_true: files('pxa2xx_dma.c')) |
|||
softmmu_ss.add(when: 'CONFIG_RASPI', if_true: files('bcm2835_dma.c')) |
|||
softmmu_ss.add(when: 'CONFIG_SIFIVE_PDMA', if_true: files('sifive_pdma.c')) |
|||
softmmu_ss.add(when: 'CONFIG_XLNX_CSU_DMA', if_true: files('xlnx_csu_dma.c')) |
|||
system_ss.add(when: 'CONFIG_RC4030', if_true: files('rc4030.c')) |
|||
system_ss.add(when: 'CONFIG_PL080', if_true: files('pl080.c')) |
|||
system_ss.add(when: 'CONFIG_PL330', if_true: files('pl330.c')) |
|||
system_ss.add(when: 'CONFIG_I82374', if_true: files('i82374.c')) |
|||
system_ss.add(when: 'CONFIG_I8257', if_true: files('i8257.c')) |
|||
system_ss.add(when: 'CONFIG_XILINX_AXI', if_true: files('xilinx_axidma.c')) |
|||
system_ss.add(when: 'CONFIG_ZYNQ_DEVCFG', if_true: files('xlnx-zynq-devcfg.c')) |
|||
system_ss.add(when: 'CONFIG_ETRAXFS', if_true: files('etraxfs_dma.c')) |
|||
system_ss.add(when: 'CONFIG_STP2000', if_true: files('sparc32_dma.c')) |
|||
system_ss.add(when: 'CONFIG_XLNX_ZYNQMP_ARM', if_true: files('xlnx_dpdma.c')) |
|||
system_ss.add(when: 'CONFIG_XLNX_ZDMA', if_true: files('xlnx-zdma.c')) |
|||
system_ss.add(when: 'CONFIG_OMAP', if_true: files('omap_dma.c', 'soc_dma.c')) |
|||
system_ss.add(when: 'CONFIG_PXA2XX', if_true: files('pxa2xx_dma.c')) |
|||
system_ss.add(when: 'CONFIG_RASPI', if_true: files('bcm2835_dma.c')) |
|||
system_ss.add(when: 'CONFIG_SIFIVE_PDMA', if_true: files('sifive_pdma.c')) |
|||
system_ss.add(when: 'CONFIG_XLNX_CSU_DMA', if_true: files('xlnx_csu_dma.c')) |
|||
|
|||
@ -1,14 +1,14 @@ |
|||
softmmu_ss.add(when: 'CONFIG_GPIO_KEY', if_true: files('gpio_key.c')) |
|||
softmmu_ss.add(when: 'CONFIG_GPIO_MPC8XXX', if_true: files('mpc8xxx.c')) |
|||
softmmu_ss.add(when: 'CONFIG_GPIO_PWR', if_true: files('gpio_pwr.c')) |
|||
softmmu_ss.add(when: 'CONFIG_MAX7310', if_true: files('max7310.c')) |
|||
softmmu_ss.add(when: 'CONFIG_PL061', if_true: files('pl061.c')) |
|||
softmmu_ss.add(when: 'CONFIG_ZAURUS', if_true: files('zaurus.c')) |
|||
system_ss.add(when: 'CONFIG_GPIO_KEY', if_true: files('gpio_key.c')) |
|||
system_ss.add(when: 'CONFIG_GPIO_MPC8XXX', if_true: files('mpc8xxx.c')) |
|||
system_ss.add(when: 'CONFIG_GPIO_PWR', if_true: files('gpio_pwr.c')) |
|||
system_ss.add(when: 'CONFIG_MAX7310', if_true: files('max7310.c')) |
|||
system_ss.add(when: 'CONFIG_PL061', if_true: files('pl061.c')) |
|||
system_ss.add(when: 'CONFIG_ZAURUS', if_true: files('zaurus.c')) |
|||
|
|||
softmmu_ss.add(when: 'CONFIG_IMX', if_true: files('imx_gpio.c')) |
|||
softmmu_ss.add(when: 'CONFIG_NPCM7XX', if_true: files('npcm7xx_gpio.c')) |
|||
softmmu_ss.add(when: 'CONFIG_NRF51_SOC', if_true: files('nrf51_gpio.c')) |
|||
softmmu_ss.add(when: 'CONFIG_OMAP', if_true: files('omap_gpio.c')) |
|||
softmmu_ss.add(when: 'CONFIG_RASPI', if_true: files('bcm2835_gpio.c')) |
|||
softmmu_ss.add(when: 'CONFIG_ASPEED_SOC', if_true: files('aspeed_gpio.c')) |
|||
softmmu_ss.add(when: 'CONFIG_SIFIVE_GPIO', if_true: files('sifive_gpio.c')) |
|||
system_ss.add(when: 'CONFIG_IMX', if_true: files('imx_gpio.c')) |
|||
system_ss.add(when: 'CONFIG_NPCM7XX', if_true: files('npcm7xx_gpio.c')) |
|||
system_ss.add(when: 'CONFIG_NRF51_SOC', if_true: files('nrf51_gpio.c')) |
|||
system_ss.add(when: 'CONFIG_OMAP', if_true: files('omap_gpio.c')) |
|||
system_ss.add(when: 'CONFIG_RASPI', if_true: files('bcm2835_gpio.c')) |
|||
system_ss.add(when: 'CONFIG_ASPEED_SOC', if_true: files('aspeed_gpio.c')) |
|||
system_ss.add(when: 'CONFIG_SIFIVE_GPIO', if_true: files('sifive_gpio.c')) |
|||
|
|||
@ -1,14 +1,14 @@ |
|||
softmmu_ss.add(when: 'CONFIG_AHCI', if_true: files('ahci.c')) |
|||
softmmu_ss.add(when: 'CONFIG_AHCI_ICH9', if_true: files('ich.c')) |
|||
softmmu_ss.add(when: 'CONFIG_ALLWINNER_A10', if_true: files('ahci-allwinner.c')) |
|||
softmmu_ss.add(when: 'CONFIG_IDE_CMD646', if_true: files('cmd646.c')) |
|||
softmmu_ss.add(when: 'CONFIG_IDE_CORE', if_true: files('core.c', 'atapi.c')) |
|||
softmmu_ss.add(when: 'CONFIG_IDE_ISA', if_true: files('isa.c', 'ioport.c')) |
|||
softmmu_ss.add(when: 'CONFIG_IDE_MACIO', if_true: files('macio.c')) |
|||
softmmu_ss.add(when: 'CONFIG_IDE_MMIO', if_true: files('mmio.c')) |
|||
softmmu_ss.add(when: 'CONFIG_IDE_PCI', if_true: files('pci.c')) |
|||
softmmu_ss.add(when: 'CONFIG_IDE_PIIX', if_true: files('piix.c', 'ioport.c')) |
|||
softmmu_ss.add(when: 'CONFIG_IDE_QDEV', if_true: files('qdev.c')) |
|||
softmmu_ss.add(when: 'CONFIG_IDE_SII3112', if_true: files('sii3112.c')) |
|||
softmmu_ss.add(when: 'CONFIG_IDE_VIA', if_true: files('via.c')) |
|||
softmmu_ss.add(when: 'CONFIG_MICRODRIVE', if_true: files('microdrive.c')) |
|||
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')) |
|||
|
|||
@ -1,18 +1,18 @@ |
|||
softmmu_ss.add(files('hid.c')) |
|||
softmmu_ss.add(when: 'CONFIG_ADB', if_true: files('adb.c', 'adb-mouse.c', 'adb-kbd.c')) |
|||
softmmu_ss.add(when: 'CONFIG_ADS7846', if_true: files('ads7846.c')) |
|||
softmmu_ss.add(when: 'CONFIG_LM832X', if_true: files('lm832x.c')) |
|||
softmmu_ss.add(when: 'CONFIG_PCKBD', if_true: files('pckbd.c')) |
|||
softmmu_ss.add(when: 'CONFIG_PL050', if_true: files('pl050.c')) |
|||
softmmu_ss.add(when: 'CONFIG_PS2', if_true: files('ps2.c')) |
|||
softmmu_ss.add(when: 'CONFIG_STELLARIS_INPUT', if_true: files('stellaris_input.c')) |
|||
softmmu_ss.add(when: 'CONFIG_TSC2005', if_true: files('tsc2005.c')) |
|||
system_ss.add(files('hid.c')) |
|||
system_ss.add(when: 'CONFIG_ADB', if_true: files('adb.c', 'adb-mouse.c', 'adb-kbd.c')) |
|||
system_ss.add(when: 'CONFIG_ADS7846', if_true: files('ads7846.c')) |
|||
system_ss.add(when: 'CONFIG_LM832X', if_true: files('lm832x.c')) |
|||
system_ss.add(when: 'CONFIG_PCKBD', if_true: files('pckbd.c')) |
|||
system_ss.add(when: 'CONFIG_PL050', if_true: files('pl050.c')) |
|||
system_ss.add(when: 'CONFIG_PS2', if_true: files('ps2.c')) |
|||
system_ss.add(when: 'CONFIG_STELLARIS_INPUT', if_true: files('stellaris_input.c')) |
|||
system_ss.add(when: 'CONFIG_TSC2005', if_true: files('tsc2005.c')) |
|||
|
|||
softmmu_ss.add(when: 'CONFIG_VIRTIO_INPUT', if_true: files('virtio-input.c')) |
|||
softmmu_ss.add(when: 'CONFIG_VIRTIO_INPUT', if_true: files('virtio-input-hid.c')) |
|||
softmmu_ss.add(when: 'CONFIG_VIRTIO_INPUT_HOST', if_true: files('virtio-input-host.c')) |
|||
softmmu_ss.add(when: 'CONFIG_VHOST_USER_INPUT', if_true: files('vhost-user-input.c')) |
|||
system_ss.add(when: 'CONFIG_VIRTIO_INPUT', if_true: files('virtio-input.c')) |
|||
system_ss.add(when: 'CONFIG_VIRTIO_INPUT', if_true: files('virtio-input-hid.c')) |
|||
system_ss.add(when: 'CONFIG_VIRTIO_INPUT_HOST', if_true: files('virtio-input-host.c')) |
|||
system_ss.add(when: 'CONFIG_VHOST_USER_INPUT', if_true: files('vhost-user-input.c')) |
|||
|
|||
softmmu_ss.add(when: 'CONFIG_PXA2XX', if_true: files('pxa2xx_keypad.c')) |
|||
softmmu_ss.add(when: 'CONFIG_TSC210X', if_true: files('tsc210x.c')) |
|||
softmmu_ss.add(when: 'CONFIG_LASIPS2', if_true: files('lasips2.c')) |
|||
system_ss.add(when: 'CONFIG_PXA2XX', if_true: files('pxa2xx_keypad.c')) |
|||
system_ss.add(when: 'CONFIG_TSC210X', if_true: files('tsc210x.c')) |
|||
system_ss.add(when: 'CONFIG_LASIPS2', if_true: files('lasips2.c')) |
|||
|
|||
@ -1 +1 @@ |
|||
softmmu_ss.add(when: 'CONFIG_IPACK', if_true: files('ipack.c', 'tpci200.c')) |
|||
system_ss.add(when: 'CONFIG_IPACK', if_true: files('ipack.c', 'tpci200.c')) |
|||
|
|||
@ -1,11 +1,11 @@ |
|||
softmmu_ss.add(when: 'CONFIG_APM', if_true: files('apm.c')) |
|||
softmmu_ss.add(when: 'CONFIG_I82378', if_true: files('i82378.c')) |
|||
softmmu_ss.add(when: 'CONFIG_ISA_BUS', if_true: files('isa-bus.c')) |
|||
softmmu_ss.add(when: 'CONFIG_ISA_SUPERIO', if_true: files('isa-superio.c')) |
|||
softmmu_ss.add(when: 'CONFIG_PC87312', if_true: files('pc87312.c')) |
|||
softmmu_ss.add(when: 'CONFIG_PIIX3', if_true: files('piix3.c')) |
|||
softmmu_ss.add(when: 'CONFIG_PIIX4', if_true: files('piix4.c')) |
|||
softmmu_ss.add(when: 'CONFIG_SMC37C669', if_true: files('smc37c669-superio.c')) |
|||
softmmu_ss.add(when: 'CONFIG_VT82C686', if_true: files('vt82c686.c')) |
|||
system_ss.add(when: 'CONFIG_APM', if_true: files('apm.c')) |
|||
system_ss.add(when: 'CONFIG_I82378', if_true: files('i82378.c')) |
|||
system_ss.add(when: 'CONFIG_ISA_BUS', if_true: files('isa-bus.c')) |
|||
system_ss.add(when: 'CONFIG_ISA_SUPERIO', if_true: files('isa-superio.c')) |
|||
system_ss.add(when: 'CONFIG_PC87312', if_true: files('pc87312.c')) |
|||
system_ss.add(when: 'CONFIG_PIIX3', if_true: files('piix3.c')) |
|||
system_ss.add(when: 'CONFIG_PIIX4', if_true: files('piix4.c')) |
|||
system_ss.add(when: 'CONFIG_SMC37C669', if_true: files('smc37c669-superio.c')) |
|||
system_ss.add(when: 'CONFIG_VT82C686', if_true: files('vt82c686.c')) |
|||
|
|||
specific_ss.add(when: 'CONFIG_LPC_ICH9', if_true: files('lpc_ich9.c')) |
|||
|
|||
@ -1,8 +1,8 @@ |
|||
softmmu_ss.add(when: 'CONFIG_CAN_SJA1000', if_true: files('can_sja1000.c')) |
|||
softmmu_ss.add(when: 'CONFIG_CAN_PCI', if_true: files('can_kvaser_pci.c')) |
|||
softmmu_ss.add(when: 'CONFIG_CAN_PCI', if_true: files('can_pcm3680_pci.c')) |
|||
softmmu_ss.add(when: 'CONFIG_CAN_PCI', if_true: files('can_mioe3680_pci.c')) |
|||
softmmu_ss.add(when: 'CONFIG_CAN_CTUCANFD', if_true: files('ctucan_core.c')) |
|||
softmmu_ss.add(when: 'CONFIG_CAN_CTUCANFD_PCI', if_true: files('ctucan_pci.c')) |
|||
softmmu_ss.add(when: 'CONFIG_XLNX_ZYNQMP', if_true: files('xlnx-zynqmp-can.c')) |
|||
softmmu_ss.add(when: 'CONFIG_XLNX_VERSAL', if_true: files('xlnx-versal-canfd.c')) |
|||
system_ss.add(when: 'CONFIG_CAN_SJA1000', if_true: files('can_sja1000.c')) |
|||
system_ss.add(when: 'CONFIG_CAN_PCI', if_true: files('can_kvaser_pci.c')) |
|||
system_ss.add(when: 'CONFIG_CAN_PCI', if_true: files('can_pcm3680_pci.c')) |
|||
system_ss.add(when: 'CONFIG_CAN_PCI', if_true: files('can_mioe3680_pci.c')) |
|||
system_ss.add(when: 'CONFIG_CAN_CTUCANFD', if_true: files('ctucan_core.c')) |
|||
system_ss.add(when: 'CONFIG_CAN_CTUCANFD_PCI', if_true: files('ctucan_pci.c')) |
|||
system_ss.add(when: 'CONFIG_XLNX_ZYNQMP', if_true: files('xlnx-zynqmp-can.c')) |
|||
system_ss.add(when: 'CONFIG_XLNX_VERSAL', if_true: files('xlnx-versal-canfd.c')) |
|||
|
|||
@ -1,75 +1,75 @@ |
|||
softmmu_ss.add(when: 'CONFIG_DP8393X', if_true: files('dp8393x.c')) |
|||
softmmu_ss.add(when: 'CONFIG_XEN', if_true: files('xen_nic.c')) |
|||
softmmu_ss.add(when: 'CONFIG_NE2000_COMMON', if_true: files('ne2000.c')) |
|||
system_ss.add(when: 'CONFIG_DP8393X', if_true: files('dp8393x.c')) |
|||
system_ss.add(when: 'CONFIG_XEN', if_true: files('xen_nic.c')) |
|||
system_ss.add(when: 'CONFIG_NE2000_COMMON', if_true: files('ne2000.c')) |
|||
|
|||
# PCI network cards |
|||
softmmu_ss.add(when: 'CONFIG_NE2000_PCI', if_true: files('ne2000-pci.c')) |
|||
softmmu_ss.add(when: 'CONFIG_EEPRO100_PCI', if_true: files('eepro100.c')) |
|||
softmmu_ss.add(when: 'CONFIG_PCNET_PCI', if_true: files('pcnet-pci.c')) |
|||
softmmu_ss.add(when: 'CONFIG_PCNET_COMMON', if_true: files('pcnet.c')) |
|||
softmmu_ss.add(when: 'CONFIG_E1000_PCI', if_true: files('e1000.c', 'e1000x_common.c')) |
|||
softmmu_ss.add(when: 'CONFIG_E1000E_PCI_EXPRESS', if_true: files('net_tx_pkt.c', 'net_rx_pkt.c')) |
|||
softmmu_ss.add(when: 'CONFIG_E1000E_PCI_EXPRESS', if_true: files('e1000e.c', 'e1000e_core.c', 'e1000x_common.c')) |
|||
softmmu_ss.add(when: 'CONFIG_IGB_PCI_EXPRESS', if_true: files('net_tx_pkt.c', 'net_rx_pkt.c')) |
|||
softmmu_ss.add(when: 'CONFIG_IGB_PCI_EXPRESS', if_true: files('igb.c', 'igbvf.c', 'igb_core.c')) |
|||
softmmu_ss.add(when: 'CONFIG_RTL8139_PCI', if_true: files('rtl8139.c')) |
|||
softmmu_ss.add(when: 'CONFIG_TULIP', if_true: files('tulip.c')) |
|||
softmmu_ss.add(when: 'CONFIG_VMXNET3_PCI', if_true: files('net_tx_pkt.c', 'net_rx_pkt.c')) |
|||
softmmu_ss.add(when: 'CONFIG_VMXNET3_PCI', if_true: files('vmxnet3.c')) |
|||
system_ss.add(when: 'CONFIG_NE2000_PCI', if_true: files('ne2000-pci.c')) |
|||
system_ss.add(when: 'CONFIG_EEPRO100_PCI', if_true: files('eepro100.c')) |
|||
system_ss.add(when: 'CONFIG_PCNET_PCI', if_true: files('pcnet-pci.c')) |
|||
system_ss.add(when: 'CONFIG_PCNET_COMMON', if_true: files('pcnet.c')) |
|||
system_ss.add(when: 'CONFIG_E1000_PCI', if_true: files('e1000.c', 'e1000x_common.c')) |
|||
system_ss.add(when: 'CONFIG_E1000E_PCI_EXPRESS', if_true: files('net_tx_pkt.c', 'net_rx_pkt.c')) |
|||
system_ss.add(when: 'CONFIG_E1000E_PCI_EXPRESS', if_true: files('e1000e.c', 'e1000e_core.c', 'e1000x_common.c')) |
|||
system_ss.add(when: 'CONFIG_IGB_PCI_EXPRESS', if_true: files('net_tx_pkt.c', 'net_rx_pkt.c')) |
|||
system_ss.add(when: 'CONFIG_IGB_PCI_EXPRESS', if_true: files('igb.c', 'igbvf.c', 'igb_core.c')) |
|||
system_ss.add(when: 'CONFIG_RTL8139_PCI', if_true: files('rtl8139.c')) |
|||
system_ss.add(when: 'CONFIG_TULIP', if_true: files('tulip.c')) |
|||
system_ss.add(when: 'CONFIG_VMXNET3_PCI', if_true: files('net_tx_pkt.c', 'net_rx_pkt.c')) |
|||
system_ss.add(when: 'CONFIG_VMXNET3_PCI', if_true: files('vmxnet3.c')) |
|||
|
|||
softmmu_ss.add(when: 'CONFIG_SMC91C111', if_true: files('smc91c111.c')) |
|||
softmmu_ss.add(when: 'CONFIG_LAN9118', if_true: files('lan9118.c')) |
|||
softmmu_ss.add(when: 'CONFIG_NE2000_ISA', if_true: files('ne2000-isa.c')) |
|||
softmmu_ss.add(when: 'CONFIG_OPENCORES_ETH', if_true: files('opencores_eth.c')) |
|||
softmmu_ss.add(when: 'CONFIG_XGMAC', if_true: files('xgmac.c')) |
|||
softmmu_ss.add(when: 'CONFIG_MIPSNET', if_true: files('mipsnet.c')) |
|||
softmmu_ss.add(when: 'CONFIG_XILINX_AXI', if_true: files('xilinx_axienet.c')) |
|||
softmmu_ss.add(when: 'CONFIG_ALLWINNER_EMAC', if_true: files('allwinner_emac.c')) |
|||
softmmu_ss.add(when: 'CONFIG_ALLWINNER_SUN8I_EMAC', if_true: files('allwinner-sun8i-emac.c')) |
|||
softmmu_ss.add(when: 'CONFIG_IMX_FEC', if_true: files('imx_fec.c')) |
|||
softmmu_ss.add(when: 'CONFIG_MSF2', if_true: files('msf2-emac.c')) |
|||
softmmu_ss.add(when: 'CONFIG_MARVELL_88W8618', if_true: files('mv88w8618_eth.c')) |
|||
system_ss.add(when: 'CONFIG_SMC91C111', if_true: files('smc91c111.c')) |
|||
system_ss.add(when: 'CONFIG_LAN9118', if_true: files('lan9118.c')) |
|||
system_ss.add(when: 'CONFIG_NE2000_ISA', if_true: files('ne2000-isa.c')) |
|||
system_ss.add(when: 'CONFIG_OPENCORES_ETH', if_true: files('opencores_eth.c')) |
|||
system_ss.add(when: 'CONFIG_XGMAC', if_true: files('xgmac.c')) |
|||
system_ss.add(when: 'CONFIG_MIPSNET', if_true: files('mipsnet.c')) |
|||
system_ss.add(when: 'CONFIG_XILINX_AXI', if_true: files('xilinx_axienet.c')) |
|||
system_ss.add(when: 'CONFIG_ALLWINNER_EMAC', if_true: files('allwinner_emac.c')) |
|||
system_ss.add(when: 'CONFIG_ALLWINNER_SUN8I_EMAC', if_true: files('allwinner-sun8i-emac.c')) |
|||
system_ss.add(when: 'CONFIG_IMX_FEC', if_true: files('imx_fec.c')) |
|||
system_ss.add(when: 'CONFIG_MSF2', if_true: files('msf2-emac.c')) |
|||
system_ss.add(when: 'CONFIG_MARVELL_88W8618', if_true: files('mv88w8618_eth.c')) |
|||
|
|||
softmmu_ss.add(when: 'CONFIG_CADENCE', if_true: files('cadence_gem.c')) |
|||
softmmu_ss.add(when: 'CONFIG_STELLARIS_ENET', if_true: files('stellaris_enet.c')) |
|||
softmmu_ss.add(when: 'CONFIG_LANCE', if_true: files('lance.c')) |
|||
softmmu_ss.add(when: 'CONFIG_LASI_I82596', if_true: files('lasi_i82596.c')) |
|||
softmmu_ss.add(when: 'CONFIG_I82596_COMMON', if_true: files('i82596.c')) |
|||
softmmu_ss.add(when: 'CONFIG_SUNHME', if_true: files('sunhme.c')) |
|||
softmmu_ss.add(when: 'CONFIG_FTGMAC100', if_true: files('ftgmac100.c')) |
|||
softmmu_ss.add(when: 'CONFIG_SUNGEM', if_true: files('sungem.c')) |
|||
softmmu_ss.add(when: 'CONFIG_NPCM7XX', if_true: files('npcm7xx_emc.c')) |
|||
system_ss.add(when: 'CONFIG_CADENCE', if_true: files('cadence_gem.c')) |
|||
system_ss.add(when: 'CONFIG_STELLARIS_ENET', if_true: files('stellaris_enet.c')) |
|||
system_ss.add(when: 'CONFIG_LANCE', if_true: files('lance.c')) |
|||
system_ss.add(when: 'CONFIG_LASI_I82596', if_true: files('lasi_i82596.c')) |
|||
system_ss.add(when: 'CONFIG_I82596_COMMON', if_true: files('i82596.c')) |
|||
system_ss.add(when: 'CONFIG_SUNHME', if_true: files('sunhme.c')) |
|||
system_ss.add(when: 'CONFIG_FTGMAC100', if_true: files('ftgmac100.c')) |
|||
system_ss.add(when: 'CONFIG_SUNGEM', if_true: files('sungem.c')) |
|||
system_ss.add(when: 'CONFIG_NPCM7XX', if_true: files('npcm7xx_emc.c')) |
|||
|
|||
softmmu_ss.add(when: 'CONFIG_ETRAXFS', if_true: files('etraxfs_eth.c')) |
|||
softmmu_ss.add(when: 'CONFIG_COLDFIRE', if_true: files('mcf_fec.c')) |
|||
system_ss.add(when: 'CONFIG_ETRAXFS', if_true: files('etraxfs_eth.c')) |
|||
system_ss.add(when: 'CONFIG_COLDFIRE', if_true: files('mcf_fec.c')) |
|||
specific_ss.add(when: 'CONFIG_PSERIES', if_true: files('spapr_llan.c')) |
|||
softmmu_ss.add(when: 'CONFIG_XILINX_ETHLITE', if_true: files('xilinx_ethlite.c')) |
|||
system_ss.add(when: 'CONFIG_XILINX_ETHLITE', if_true: files('xilinx_ethlite.c')) |
|||
|
|||
softmmu_ss.add(when: 'CONFIG_VIRTIO_NET', if_true: files('net_rx_pkt.c')) |
|||
system_ss.add(when: 'CONFIG_VIRTIO_NET', if_true: files('net_rx_pkt.c')) |
|||
specific_ss.add(when: 'CONFIG_VIRTIO_NET', if_true: files('virtio-net.c')) |
|||
|
|||
if have_vhost_net |
|||
softmmu_ss.add(when: 'CONFIG_VIRTIO_NET', if_true: files('vhost_net.c'), if_false: files('vhost_net-stub.c')) |
|||
softmmu_ss.add(when: 'CONFIG_ALL', if_true: files('vhost_net-stub.c')) |
|||
system_ss.add(when: 'CONFIG_VIRTIO_NET', if_true: files('vhost_net.c'), if_false: files('vhost_net-stub.c')) |
|||
system_ss.add(when: 'CONFIG_ALL', if_true: files('vhost_net-stub.c')) |
|||
else |
|||
softmmu_ss.add(files('vhost_net-stub.c')) |
|||
system_ss.add(files('vhost_net-stub.c')) |
|||
endif |
|||
|
|||
softmmu_ss.add(when: 'CONFIG_ETSEC', if_true: files( |
|||
system_ss.add(when: 'CONFIG_ETSEC', if_true: files( |
|||
'fsl_etsec/etsec.c', |
|||
'fsl_etsec/miim.c', |
|||
'fsl_etsec/registers.c', |
|||
'fsl_etsec/rings.c', |
|||
)) |
|||
|
|||
softmmu_ss.add(when: 'CONFIG_ROCKER', if_true: files( |
|||
system_ss.add(when: 'CONFIG_ROCKER', if_true: files( |
|||
'rocker/rocker.c', |
|||
'rocker/rocker_desc.c', |
|||
'rocker/rocker_fp.c', |
|||
'rocker/rocker_of_dpa.c', |
|||
'rocker/rocker_world.c', |
|||
), if_false: files('rocker/qmp-norocker.c')) |
|||
softmmu_ss.add(when: 'CONFIG_ALL', if_true: files('rocker/qmp-norocker.c')) |
|||
softmmu_ss.add(files('rocker/rocker-hmp-cmds.c')) |
|||
system_ss.add(when: 'CONFIG_ALL', if_true: files('rocker/qmp-norocker.c')) |
|||
system_ss.add(files('rocker/rocker-hmp-cmds.c')) |
|||
|
|||
subdir('can') |
|||
|
|||
@ -1 +1 @@ |
|||
softmmu_ss.add(when: 'CONFIG_NVME_PCI', if_true: files('ctrl.c', 'dif.c', 'ns.c', 'subsys.c')) |
|||
system_ss.add(when: 'CONFIG_NVME_PCI', if_true: files('ctrl.c', 'dif.c', 'ns.c', 'subsys.c')) |
|||
|
|||
@ -1,2 +1,2 @@ |
|||
softmmu_ss.add(when: 'CONFIG_PCMCIA', if_true: files('pcmcia.c')) |
|||
softmmu_ss.add(when: 'CONFIG_PXA2XX', if_true: files('pxa2xx.c')) |
|||
system_ss.add(when: 'CONFIG_PCMCIA', if_true: files('pcmcia.c')) |
|||
system_ss.add(when: 'CONFIG_PXA2XX', if_true: files('pxa2xx.c')) |
|||
|
|||
@ -1,16 +1,16 @@ |
|||
|
|||
softmmu_ss.add(when: 'CONFIG_DS1338', if_true: files('ds1338.c')) |
|||
softmmu_ss.add(when: 'CONFIG_M41T80', if_true: files('m41t80.c')) |
|||
softmmu_ss.add(when: 'CONFIG_M48T59', if_true: files('m48t59.c')) |
|||
softmmu_ss.add(when: 'CONFIG_PL031', if_true: files('pl031.c')) |
|||
softmmu_ss.add(when: 'CONFIG_TWL92230', if_true: files('twl92230.c')) |
|||
softmmu_ss.add(when: ['CONFIG_ISA_BUS', 'CONFIG_M48T59'], if_true: files('m48t59-isa.c')) |
|||
softmmu_ss.add(when: 'CONFIG_XLNX_ZYNQMP', if_true: files('xlnx-zynqmp-rtc.c')) |
|||
system_ss.add(when: 'CONFIG_DS1338', if_true: files('ds1338.c')) |
|||
system_ss.add(when: 'CONFIG_M41T80', if_true: files('m41t80.c')) |
|||
system_ss.add(when: 'CONFIG_M48T59', if_true: files('m48t59.c')) |
|||
system_ss.add(when: 'CONFIG_PL031', if_true: files('pl031.c')) |
|||
system_ss.add(when: 'CONFIG_TWL92230', if_true: files('twl92230.c')) |
|||
system_ss.add(when: ['CONFIG_ISA_BUS', 'CONFIG_M48T59'], if_true: files('m48t59-isa.c')) |
|||
system_ss.add(when: 'CONFIG_XLNX_ZYNQMP', if_true: files('xlnx-zynqmp-rtc.c')) |
|||
|
|||
softmmu_ss.add(when: 'CONFIG_EXYNOS4', if_true: files('exynos4210_rtc.c')) |
|||
softmmu_ss.add(when: 'CONFIG_SUN4V_RTC', if_true: files('sun4v-rtc.c')) |
|||
softmmu_ss.add(when: 'CONFIG_ASPEED_SOC', if_true: files('aspeed_rtc.c')) |
|||
softmmu_ss.add(when: 'CONFIG_GOLDFISH_RTC', if_true: files('goldfish_rtc.c')) |
|||
softmmu_ss.add(when: 'CONFIG_LS7A_RTC', if_true: files('ls7a_rtc.c')) |
|||
softmmu_ss.add(when: 'CONFIG_ALLWINNER_H3', if_true: files('allwinner-rtc.c')) |
|||
softmmu_ss.add(when: 'CONFIG_MC146818RTC', if_true: files('mc146818rtc.c')) |
|||
system_ss.add(when: 'CONFIG_EXYNOS4', if_true: files('exynos4210_rtc.c')) |
|||
system_ss.add(when: 'CONFIG_SUN4V_RTC', if_true: files('sun4v-rtc.c')) |
|||
system_ss.add(when: 'CONFIG_ASPEED_SOC', if_true: files('aspeed_rtc.c')) |
|||
system_ss.add(when: 'CONFIG_GOLDFISH_RTC', if_true: files('goldfish_rtc.c')) |
|||
system_ss.add(when: 'CONFIG_LS7A_RTC', if_true: files('ls7a_rtc.c')) |
|||
system_ss.add(when: 'CONFIG_ALLWINNER_H3', if_true: files('allwinner-rtc.c')) |
|||
system_ss.add(when: 'CONFIG_MC146818RTC', if_true: files('mc146818rtc.c')) |
|||
|
|||
@ -1,13 +1,13 @@ |
|||
softmmu_ss.add(when: 'CONFIG_PL181', if_true: files('pl181.c')) |
|||
softmmu_ss.add(when: 'CONFIG_SD', if_true: files('sd.c', 'core.c', 'sdmmc-internal.c')) |
|||
softmmu_ss.add(when: 'CONFIG_SDHCI', if_true: files('sdhci.c')) |
|||
softmmu_ss.add(when: 'CONFIG_SDHCI_PCI', if_true: files('sdhci-pci.c')) |
|||
softmmu_ss.add(when: 'CONFIG_SSI_SD', if_true: files('ssi-sd.c')) |
|||
system_ss.add(when: 'CONFIG_PL181', if_true: files('pl181.c')) |
|||
system_ss.add(when: 'CONFIG_SD', if_true: files('sd.c', 'core.c', 'sdmmc-internal.c')) |
|||
system_ss.add(when: 'CONFIG_SDHCI', if_true: files('sdhci.c')) |
|||
system_ss.add(when: 'CONFIG_SDHCI_PCI', if_true: files('sdhci-pci.c')) |
|||
system_ss.add(when: 'CONFIG_SSI_SD', if_true: files('ssi-sd.c')) |
|||
|
|||
softmmu_ss.add(when: 'CONFIG_OMAP', if_true: files('omap_mmc.c')) |
|||
softmmu_ss.add(when: 'CONFIG_PXA2XX', if_true: files('pxa2xx_mmci.c')) |
|||
softmmu_ss.add(when: 'CONFIG_RASPI', if_true: files('bcm2835_sdhost.c')) |
|||
softmmu_ss.add(when: 'CONFIG_ASPEED_SOC', if_true: files('aspeed_sdhci.c')) |
|||
softmmu_ss.add(when: 'CONFIG_ALLWINNER_H3', if_true: files('allwinner-sdhost.c')) |
|||
softmmu_ss.add(when: 'CONFIG_NPCM7XX', if_true: files('npcm7xx_sdhci.c')) |
|||
softmmu_ss.add(when: 'CONFIG_CADENCE_SDHCI', if_true: files('cadence_sdhci.c')) |
|||
system_ss.add(when: 'CONFIG_OMAP', if_true: files('omap_mmc.c')) |
|||
system_ss.add(when: 'CONFIG_PXA2XX', if_true: files('pxa2xx_mmci.c')) |
|||
system_ss.add(when: 'CONFIG_RASPI', if_true: files('bcm2835_sdhost.c')) |
|||
system_ss.add(when: 'CONFIG_ASPEED_SOC', if_true: files('aspeed_sdhci.c')) |
|||
system_ss.add(when: 'CONFIG_ALLWINNER_H3', if_true: files('allwinner-sdhost.c')) |
|||
system_ss.add(when: 'CONFIG_NPCM7XX', if_true: files('npcm7xx_sdhci.c')) |
|||
system_ss.add(when: 'CONFIG_CADENCE_SDHCI', if_true: files('cadence_sdhci.c')) |
|||
|
|||
@ -1,9 +1,9 @@ |
|||
softmmu_ss.add(when: 'CONFIG_TMP105', if_true: files('tmp105.c')) |
|||
softmmu_ss.add(when: 'CONFIG_TMP421', if_true: files('tmp421.c')) |
|||
softmmu_ss.add(when: 'CONFIG_DPS310', if_true: files('dps310.c')) |
|||
softmmu_ss.add(when: 'CONFIG_EMC141X', if_true: files('emc141x.c')) |
|||
softmmu_ss.add(when: 'CONFIG_ADM1272', if_true: files('adm1272.c')) |
|||
softmmu_ss.add(when: 'CONFIG_MAX34451', if_true: files('max34451.c')) |
|||
softmmu_ss.add(when: 'CONFIG_LSM303DLHC_MAG', if_true: files('lsm303dlhc_mag.c')) |
|||
softmmu_ss.add(when: 'CONFIG_ISL_PMBUS_VR', if_true: files('isl_pmbus_vr.c')) |
|||
softmmu_ss.add(when: 'CONFIG_MAX31785', if_true: files('max31785.c')) |
|||
system_ss.add(when: 'CONFIG_TMP105', if_true: files('tmp105.c')) |
|||
system_ss.add(when: 'CONFIG_TMP421', if_true: files('tmp421.c')) |
|||
system_ss.add(when: 'CONFIG_DPS310', if_true: files('dps310.c')) |
|||
system_ss.add(when: 'CONFIG_EMC141X', if_true: files('emc141x.c')) |
|||
system_ss.add(when: 'CONFIG_ADM1272', if_true: files('adm1272.c')) |
|||
system_ss.add(when: 'CONFIG_MAX34451', if_true: files('max34451.c')) |
|||
system_ss.add(when: 'CONFIG_LSM303DLHC_MAG', if_true: files('lsm303dlhc_mag.c')) |
|||
system_ss.add(when: 'CONFIG_ISL_PMBUS_VR', if_true: files('isl_pmbus_vr.c')) |
|||
system_ss.add(when: 'CONFIG_MAX31785', if_true: files('max31785.c')) |
|||
|
|||
@ -1,13 +1,13 @@ |
|||
softmmu_ss.add(when: 'CONFIG_ASPEED_SOC', if_true: files('aspeed_smc.c')) |
|||
softmmu_ss.add(when: 'CONFIG_MSF2', if_true: files('mss-spi.c')) |
|||
softmmu_ss.add(when: 'CONFIG_NPCM7XX', if_true: files('npcm7xx_fiu.c', 'npcm_pspi.c')) |
|||
softmmu_ss.add(when: 'CONFIG_PL022', if_true: files('pl022.c')) |
|||
softmmu_ss.add(when: 'CONFIG_SIFIVE_SPI', if_true: files('sifive_spi.c')) |
|||
softmmu_ss.add(when: 'CONFIG_SSI', if_true: files('ssi.c')) |
|||
softmmu_ss.add(when: 'CONFIG_STM32F2XX_SPI', if_true: files('stm32f2xx_spi.c')) |
|||
softmmu_ss.add(when: 'CONFIG_XILINX_SPI', if_true: files('xilinx_spi.c')) |
|||
softmmu_ss.add(when: 'CONFIG_XILINX_SPIPS', if_true: files('xilinx_spips.c')) |
|||
softmmu_ss.add(when: 'CONFIG_XLNX_VERSAL', if_true: files('xlnx-versal-ospi.c')) |
|||
softmmu_ss.add(when: 'CONFIG_IMX', if_true: files('imx_spi.c')) |
|||
softmmu_ss.add(when: 'CONFIG_OMAP', if_true: files('omap_spi.c')) |
|||
softmmu_ss.add(when: 'CONFIG_IBEX', if_true: files('ibex_spi_host.c')) |
|||
system_ss.add(when: 'CONFIG_ASPEED_SOC', if_true: files('aspeed_smc.c')) |
|||
system_ss.add(when: 'CONFIG_MSF2', if_true: files('mss-spi.c')) |
|||
system_ss.add(when: 'CONFIG_NPCM7XX', if_true: files('npcm7xx_fiu.c', 'npcm_pspi.c')) |
|||
system_ss.add(when: 'CONFIG_PL022', if_true: files('pl022.c')) |
|||
system_ss.add(when: 'CONFIG_SIFIVE_SPI', if_true: files('sifive_spi.c')) |
|||
system_ss.add(when: 'CONFIG_SSI', if_true: files('ssi.c')) |
|||
system_ss.add(when: 'CONFIG_STM32F2XX_SPI', if_true: files('stm32f2xx_spi.c')) |
|||
system_ss.add(when: 'CONFIG_XILINX_SPI', if_true: files('xilinx_spi.c')) |
|||
system_ss.add(when: 'CONFIG_XILINX_SPIPS', if_true: files('xilinx_spips.c')) |
|||
system_ss.add(when: 'CONFIG_XLNX_VERSAL', if_true: files('xlnx-versal-ospi.c')) |
|||
system_ss.add(when: 'CONFIG_IMX', if_true: files('imx_spi.c')) |
|||
system_ss.add(when: 'CONFIG_OMAP', if_true: files('omap_spi.c')) |
|||
system_ss.add(when: 'CONFIG_IBEX', if_true: files('ibex_spi_host.c')) |
|||
|
|||
@ -1,40 +1,40 @@ |
|||
softmmu_ss.add(when: 'CONFIG_A9_GTIMER', if_true: files('a9gtimer.c')) |
|||
softmmu_ss.add(when: 'CONFIG_ALLWINNER_A10_PIT', if_true: files('allwinner-a10-pit.c')) |
|||
softmmu_ss.add(when: 'CONFIG_ALTERA_TIMER', if_true: files('altera_timer.c')) |
|||
softmmu_ss.add(when: 'CONFIG_ARM_MPTIMER', if_true: files('arm_mptimer.c')) |
|||
softmmu_ss.add(when: 'CONFIG_ARM_TIMER', if_true: files('arm_timer.c')) |
|||
softmmu_ss.add(when: 'CONFIG_ARM_V7M', if_true: files('armv7m_systick.c')) |
|||
softmmu_ss.add(when: 'CONFIG_ASPEED_SOC', if_true: files('aspeed_timer.c')) |
|||
softmmu_ss.add(when: 'CONFIG_CADENCE', if_true: files('cadence_ttc.c')) |
|||
softmmu_ss.add(when: 'CONFIG_CMSDK_APB_DUALTIMER', if_true: files('cmsdk-apb-dualtimer.c')) |
|||
softmmu_ss.add(when: 'CONFIG_CMSDK_APB_TIMER', if_true: files('cmsdk-apb-timer.c')) |
|||
softmmu_ss.add(when: 'CONFIG_RENESAS_TMR', if_true: files('renesas_tmr.c')) |
|||
softmmu_ss.add(when: 'CONFIG_RENESAS_CMT', if_true: files('renesas_cmt.c')) |
|||
softmmu_ss.add(when: 'CONFIG_DIGIC', if_true: files('digic-timer.c')) |
|||
softmmu_ss.add(when: 'CONFIG_ETRAXFS', if_true: files('etraxfs_timer.c')) |
|||
softmmu_ss.add(when: 'CONFIG_EXYNOS4', if_true: files('exynos4210_mct.c')) |
|||
softmmu_ss.add(when: 'CONFIG_EXYNOS4', if_true: files('exynos4210_pwm.c')) |
|||
softmmu_ss.add(when: 'CONFIG_GRLIB', if_true: files('grlib_gptimer.c')) |
|||
softmmu_ss.add(when: 'CONFIG_HPET', if_true: files('hpet.c')) |
|||
softmmu_ss.add(when: 'CONFIG_I8254', if_true: files('i8254_common.c', 'i8254.c')) |
|||
softmmu_ss.add(when: 'CONFIG_IMX', if_true: files('imx_epit.c')) |
|||
softmmu_ss.add(when: 'CONFIG_IMX', if_true: files('imx_gpt.c')) |
|||
softmmu_ss.add(when: 'CONFIG_MIPS_CPS', if_true: files('mips_gictimer.c')) |
|||
softmmu_ss.add(when: 'CONFIG_MSF2', if_true: files('mss-timer.c')) |
|||
softmmu_ss.add(when: 'CONFIG_NPCM7XX', if_true: files('npcm7xx_timer.c')) |
|||
softmmu_ss.add(when: 'CONFIG_NRF51_SOC', if_true: files('nrf51_timer.c')) |
|||
softmmu_ss.add(when: 'CONFIG_OMAP', if_true: files('omap_gptimer.c')) |
|||
softmmu_ss.add(when: 'CONFIG_OMAP', if_true: files('omap_synctimer.c')) |
|||
softmmu_ss.add(when: 'CONFIG_PXA2XX', if_true: files('pxa2xx_timer.c')) |
|||
softmmu_ss.add(when: 'CONFIG_RASPI', if_true: files('bcm2835_systmr.c')) |
|||
softmmu_ss.add(when: 'CONFIG_SH_TIMER', if_true: files('sh_timer.c')) |
|||
softmmu_ss.add(when: 'CONFIG_SLAVIO', if_true: files('slavio_timer.c')) |
|||
softmmu_ss.add(when: 'CONFIG_SSE_COUNTER', if_true: files('sse-counter.c')) |
|||
softmmu_ss.add(when: 'CONFIG_SSE_TIMER', if_true: files('sse-timer.c')) |
|||
softmmu_ss.add(when: 'CONFIG_STELLARIS_GPTM', if_true: files('stellaris-gptm.c')) |
|||
softmmu_ss.add(when: 'CONFIG_STM32F2XX_TIMER', if_true: files('stm32f2xx_timer.c')) |
|||
softmmu_ss.add(when: 'CONFIG_XILINX', if_true: files('xilinx_timer.c')) |
|||
system_ss.add(when: 'CONFIG_A9_GTIMER', if_true: files('a9gtimer.c')) |
|||
system_ss.add(when: 'CONFIG_ALLWINNER_A10_PIT', if_true: files('allwinner-a10-pit.c')) |
|||
system_ss.add(when: 'CONFIG_ALTERA_TIMER', if_true: files('altera_timer.c')) |
|||
system_ss.add(when: 'CONFIG_ARM_MPTIMER', if_true: files('arm_mptimer.c')) |
|||
system_ss.add(when: 'CONFIG_ARM_TIMER', if_true: files('arm_timer.c')) |
|||
system_ss.add(when: 'CONFIG_ARM_V7M', if_true: files('armv7m_systick.c')) |
|||
system_ss.add(when: 'CONFIG_ASPEED_SOC', if_true: files('aspeed_timer.c')) |
|||
system_ss.add(when: 'CONFIG_CADENCE', if_true: files('cadence_ttc.c')) |
|||
system_ss.add(when: 'CONFIG_CMSDK_APB_DUALTIMER', if_true: files('cmsdk-apb-dualtimer.c')) |
|||
system_ss.add(when: 'CONFIG_CMSDK_APB_TIMER', if_true: files('cmsdk-apb-timer.c')) |
|||
system_ss.add(when: 'CONFIG_RENESAS_TMR', if_true: files('renesas_tmr.c')) |
|||
system_ss.add(when: 'CONFIG_RENESAS_CMT', if_true: files('renesas_cmt.c')) |
|||
system_ss.add(when: 'CONFIG_DIGIC', if_true: files('digic-timer.c')) |
|||
system_ss.add(when: 'CONFIG_ETRAXFS', if_true: files('etraxfs_timer.c')) |
|||
system_ss.add(when: 'CONFIG_EXYNOS4', if_true: files('exynos4210_mct.c')) |
|||
system_ss.add(when: 'CONFIG_EXYNOS4', if_true: files('exynos4210_pwm.c')) |
|||
system_ss.add(when: 'CONFIG_GRLIB', if_true: files('grlib_gptimer.c')) |
|||
system_ss.add(when: 'CONFIG_HPET', if_true: files('hpet.c')) |
|||
system_ss.add(when: 'CONFIG_I8254', if_true: files('i8254_common.c', 'i8254.c')) |
|||
system_ss.add(when: 'CONFIG_IMX', if_true: files('imx_epit.c')) |
|||
system_ss.add(when: 'CONFIG_IMX', if_true: files('imx_gpt.c')) |
|||
system_ss.add(when: 'CONFIG_MIPS_CPS', if_true: files('mips_gictimer.c')) |
|||
system_ss.add(when: 'CONFIG_MSF2', if_true: files('mss-timer.c')) |
|||
system_ss.add(when: 'CONFIG_NPCM7XX', if_true: files('npcm7xx_timer.c')) |
|||
system_ss.add(when: 'CONFIG_NRF51_SOC', if_true: files('nrf51_timer.c')) |
|||
system_ss.add(when: 'CONFIG_OMAP', if_true: files('omap_gptimer.c')) |
|||
system_ss.add(when: 'CONFIG_OMAP', if_true: files('omap_synctimer.c')) |
|||
system_ss.add(when: 'CONFIG_PXA2XX', if_true: files('pxa2xx_timer.c')) |
|||
system_ss.add(when: 'CONFIG_RASPI', if_true: files('bcm2835_systmr.c')) |
|||
system_ss.add(when: 'CONFIG_SH_TIMER', if_true: files('sh_timer.c')) |
|||
system_ss.add(when: 'CONFIG_SLAVIO', if_true: files('slavio_timer.c')) |
|||
system_ss.add(when: 'CONFIG_SSE_COUNTER', if_true: files('sse-counter.c')) |
|||
system_ss.add(when: 'CONFIG_SSE_TIMER', if_true: files('sse-timer.c')) |
|||
system_ss.add(when: 'CONFIG_STELLARIS_GPTM', if_true: files('stellaris-gptm.c')) |
|||
system_ss.add(when: 'CONFIG_STM32F2XX_TIMER', if_true: files('stm32f2xx_timer.c')) |
|||
system_ss.add(when: 'CONFIG_XILINX', if_true: files('xilinx_timer.c')) |
|||
specific_ss.add(when: 'CONFIG_IBEX', if_true: files('ibex_timer.c')) |
|||
softmmu_ss.add(when: 'CONFIG_SIFIVE_PWM', if_true: files('sifive_pwm.c')) |
|||
system_ss.add(when: 'CONFIG_SIFIVE_PWM', if_true: files('sifive_pwm.c')) |
|||
|
|||
specific_ss.add(when: 'CONFIG_AVR_TIMER16', if_true: files('avr_timer16.c')) |
|||
|
|||
@ -1,9 +1,9 @@ |
|||
softmmu_ss.add(when: 'CONFIG_TPM_TIS', if_true: files('tpm_tis_common.c')) |
|||
softmmu_ss.add(when: 'CONFIG_TPM_TIS_ISA', if_true: files('tpm_tis_isa.c')) |
|||
softmmu_ss.add(when: 'CONFIG_TPM_TIS_SYSBUS', if_true: files('tpm_tis_sysbus.c')) |
|||
softmmu_ss.add(when: 'CONFIG_TPM_TIS_I2C', if_true: files('tpm_tis_i2c.c')) |
|||
softmmu_ss.add(when: 'CONFIG_TPM_CRB', if_true: files('tpm_crb.c')) |
|||
softmmu_ss.add(when: 'CONFIG_TPM_TIS', if_true: files('tpm_ppi.c')) |
|||
softmmu_ss.add(when: 'CONFIG_TPM_CRB', if_true: files('tpm_ppi.c')) |
|||
system_ss.add(when: 'CONFIG_TPM_TIS', if_true: files('tpm_tis_common.c')) |
|||
system_ss.add(when: 'CONFIG_TPM_TIS_ISA', if_true: files('tpm_tis_isa.c')) |
|||
system_ss.add(when: 'CONFIG_TPM_TIS_SYSBUS', if_true: files('tpm_tis_sysbus.c')) |
|||
system_ss.add(when: 'CONFIG_TPM_TIS_I2C', if_true: files('tpm_tis_i2c.c')) |
|||
system_ss.add(when: 'CONFIG_TPM_CRB', if_true: files('tpm_crb.c')) |
|||
system_ss.add(when: 'CONFIG_TPM_TIS', if_true: files('tpm_ppi.c')) |
|||
system_ss.add(when: 'CONFIG_TPM_CRB', if_true: files('tpm_ppi.c')) |
|||
|
|||
specific_ss.add(when: 'CONFIG_TPM_SPAPR', if_true: files('tpm_spapr.c')) |
|||
|
|||
@ -1,10 +1,10 @@ |
|||
softmmu_ss.add(files('watchdog.c')) |
|||
softmmu_ss.add(when: 'CONFIG_ALLWINNER_WDT', if_true: files('allwinner-wdt.c')) |
|||
softmmu_ss.add(when: 'CONFIG_CMSDK_APB_WATCHDOG', if_true: files('cmsdk-apb-watchdog.c')) |
|||
softmmu_ss.add(when: 'CONFIG_WDT_IB6300ESB', if_true: files('wdt_i6300esb.c')) |
|||
softmmu_ss.add(when: 'CONFIG_WDT_IB700', if_true: files('wdt_ib700.c')) |
|||
softmmu_ss.add(when: 'CONFIG_WDT_DIAG288', if_true: files('wdt_diag288.c')) |
|||
softmmu_ss.add(when: 'CONFIG_ASPEED_SOC', if_true: files('wdt_aspeed.c')) |
|||
softmmu_ss.add(when: 'CONFIG_WDT_IMX2', if_true: files('wdt_imx2.c')) |
|||
softmmu_ss.add(when: 'CONFIG_WDT_SBSA', if_true: files('sbsa_gwdt.c')) |
|||
system_ss.add(files('watchdog.c')) |
|||
system_ss.add(when: 'CONFIG_ALLWINNER_WDT', if_true: files('allwinner-wdt.c')) |
|||
system_ss.add(when: 'CONFIG_CMSDK_APB_WATCHDOG', if_true: files('cmsdk-apb-watchdog.c')) |
|||
system_ss.add(when: 'CONFIG_WDT_IB6300ESB', if_true: files('wdt_i6300esb.c')) |
|||
system_ss.add(when: 'CONFIG_WDT_IB700', if_true: files('wdt_ib700.c')) |
|||
system_ss.add(when: 'CONFIG_WDT_DIAG288', if_true: files('wdt_diag288.c')) |
|||
system_ss.add(when: 'CONFIG_ASPEED_SOC', if_true: files('wdt_aspeed.c')) |
|||
system_ss.add(when: 'CONFIG_WDT_IMX2', if_true: files('wdt_imx2.c')) |
|||
system_ss.add(when: 'CONFIG_WDT_SBSA', if_true: files('sbsa_gwdt.c')) |
|||
specific_ss.add(when: 'CONFIG_PSERIES', if_true: files('spapr_watchdog.c')) |
|||
|
|||
@ -1,11 +1,11 @@ |
|||
qmp_ss.add(files('monitor.c', 'qmp.c', 'qmp-cmds-control.c')) |
|||
|
|||
softmmu_ss.add(files( |
|||
system_ss.add(files( |
|||
'fds.c', |
|||
'hmp-cmds.c', |
|||
'hmp.c', |
|||
)) |
|||
softmmu_ss.add([spice_headers, files('qmp-cmds.c')]) |
|||
system_ss.add([spice_headers, files('qmp-cmds.c')]) |
|||
|
|||
specific_ss.add(when: 'CONFIG_SYSTEM_ONLY', |
|||
if_true: [files( 'hmp-cmds-target.c', 'hmp-target.c'), spice]) |
|||
|
|||
@ -1 +1 @@ |
|||
softmmu_ss.add(files('stats-hmp-cmds.c', 'stats-qmp-cmds.c')) |
|||
system_ss.add(files('stats-hmp-cmds.c', 'stats-qmp-cmds.c')) |
|||
|
|||
@ -1,3 +1,3 @@ |
|||
arm_softmmu_ss.add(when: [hvf, 'CONFIG_HVF'], if_true: files( |
|||
arm_system_ss.add(when: [hvf, 'CONFIG_HVF'], if_true: files( |
|||
'hvf.c', |
|||
)) |
|||
|
|||
@ -1,7 +1,7 @@ |
|||
i386_softmmu_ss.add(when: 'CONFIG_HAX', if_true: files( |
|||
i386_system_ss.add(when: 'CONFIG_HAX', if_true: files( |
|||
'hax-all.c', |
|||
'hax-mem.c', |
|||
'hax-accel-ops.c', |
|||
)) |
|||
i386_softmmu_ss.add(when: ['CONFIG_HAX', 'CONFIG_POSIX'], if_true: files('hax-posix.c')) |
|||
i386_softmmu_ss.add(when: ['CONFIG_HAX', 'CONFIG_WIN32'], if_true: files('hax-windows.c')) |
|||
i386_system_ss.add(when: ['CONFIG_HAX', 'CONFIG_POSIX'], if_true: files('hax-posix.c')) |
|||
i386_system_ss.add(when: ['CONFIG_HAX', 'CONFIG_WIN32'], if_true: files('hax-windows.c')) |
|||
|
|||
@ -1,8 +1,8 @@ |
|||
i386_softmmu_ss.add(when: 'CONFIG_NVMM', if_true: |
|||
i386_system_ss.add(when: 'CONFIG_NVMM', if_true: |
|||
files( |
|||
'nvmm-all.c', |
|||
'nvmm-accel-ops.c', |
|||
) |
|||
) |
|||
|
|||
i386_softmmu_ss.add(when: 'CONFIG_NVMM', if_true: nvmm) |
|||
i386_system_ss.add(when: 'CONFIG_NVMM', if_true: nvmm) |
|||
|
|||
Some files were not shown because too many files changed in this diff
Loading…
Reference in new issue