Home
last modified time | relevance | path

Searched refs:files (Results 1 – 25 of 4049) sorted by relevance

12345678910>>...162

/openbmc/qemu/util/
H A Dmeson.build1 util_ss.add(files('osdep.c', 'cutils.c', 'unicode.c', 'qemu-timer-common.c'))
2 util_ss.add(files('thread-context.c'), numa)
4 util_ss.add(files('atomic64.c'))
7 util_ss.add(files('aio-posix.c'))
8 util_ss.add(files('fdmon-poll.c'))
10 util_ss.add(files('fdmon-epoll.c'))
12 util_ss.add(files('compatfd.c'))
13 util_ss.add(files('event_notifier-posix.c'))
14 util_ss.add(files('mmap-alloc.c'))
19 util_ss.add(files('oslib-posix.c'), freebsd_dep)
[all …]
/openbmc/qemu/hw/misc/
H A Dmeson.build1 system_ss.add(when: 'CONFIG_APPLESMC', if_true: files('applesmc.c'))
2 system_ss.add(when: 'CONFIG_EDU', if_true: files('edu.c'))
3 system_ss.add(when: 'CONFIG_FW_CFG_DMA', if_true: files('vmcoreinfo.c'))
4 system_ss.add(when: 'CONFIG_ISA_DEBUG', if_true: files('debugexit.c'))
5 system_ss.add(when: 'CONFIG_ISA_TESTDEV', if_true: files('pc-testdev.c'))
6 system_ss.add(when: 'CONFIG_PCI_TESTDEV', if_true: files('pci-testdev.c'))
7 system_ss.add(when: 'CONFIG_UNIMP', if_true: files('unimp.c'))
8 system_ss.add(when: 'CONFIG_EMPTY_SLOT', if_true: files('empty_slot.c'))
9 system_ss.add(when: 'CONFIG_LED', if_true: files('led.c'))
10 system_ss.add(when: 'CONFIG_PVPANIC_COMMON', if_true: files('pvpanic.c'))
[all …]
/openbmc/linux/fs/
H A Dfile.c165 static int expand_fdtable(struct files_struct *files, unsigned int nr) in expand_fdtable() argument
166 __releases(files->file_lock) in expand_fdtable()
167 __acquires(files->file_lock) in expand_fdtable()
171 spin_unlock(&files->file_lock); in expand_fdtable()
177 if (atomic_read(&files->count) > 1) in expand_fdtable()
180 spin_lock(&files->file_lock); in expand_fdtable()
191 cur_fdt = files_fdtable(files); in expand_fdtable()
194 rcu_assign_pointer(files->fdt, new_fdt); in expand_fdtable()
195 if (cur_fdt != &files->fdtab) in expand_fdtable()
210 static int expand_files(struct files_struct *files, unsigned int nr) in expand_files() argument
[all …]
/openbmc/qemu/hw/arm/
H A Dmeson.build2 arm_ss.add(files('boot.c'))
3 arm_ss.add(when: 'CONFIG_ARM_VIRT', if_true: files('virt.c'))
4 arm_ss.add(when: 'CONFIG_ACPI', if_true: files('virt-acpi-build.c'))
5 arm_ss.add(when: 'CONFIG_DIGIC', if_true: files('digic_boards.c'))
6 arm_ss.add(when: 'CONFIG_EMCRAFT_SF2', if_true: files('msf2-som.c'))
7 arm_ss.add(when: 'CONFIG_HIGHBANK', if_true: files('highbank.c'))
8 arm_ss.add(when: 'CONFIG_INTEGRATOR', if_true: files('integratorcp.c'))
9 arm_ss.add(when: 'CONFIG_MICROBIT', if_true: files('microbit.c'))
10 arm_ss.add(when: 'CONFIG_MPS3R', if_true: files('mps3r.c'))
11 arm_ss.add(when: 'CONFIG_MUSICPAL', if_true: files('musicpal.c'))
[all …]
/openbmc/qemu/hw/intc/
H A Dmeson.build1 system_ss.add(files('intc.c'))
2 system_ss.add(when: 'CONFIG_ARM_GIC', if_true: files(
9 system_ss.add(when: 'CONFIG_ARM_GICV3_TCG', if_true: files(
15 system_ss.add(when: 'CONFIG_ALLWINNER_A10_PIC', if_true: files('allwinner-a10-pic.c'))
16 system_ss.add(when: 'CONFIG_ASPEED_SOC', if_true: files('aspeed_vic.c'))
17 system_ss.add(when: 'CONFIG_ASPEED_SOC', if_true: files('aspeed_intc.c'))
18 system_ss.add(when: 'CONFIG_EXYNOS4', if_true: files('exynos4210_gic.c', 'exynos4210_combiner.c'))
19 system_ss.add(when: 'CONFIG_GOLDFISH_PIC', if_true: files('goldfish_pic.c'))
20 system_ss.add(when: 'CONFIG_HEATHROW_PIC', if_true: files('heathrow_pic.c'))
21 system_ss.add(when: 'CONFIG_I8259', if_true: files('i8259_common.c', 'i8259.c'))
[all …]
/openbmc/qemu/hw/net/
H A Dmeson.build1 system_ss.add(when: 'CONFIG_DP8393X', if_true: files('dp8393x.c'))
2 system_ss.add(when: 'CONFIG_XEN_BUS', if_true: files('xen_nic.c'))
3 system_ss.add(when: 'CONFIG_NE2000_COMMON', if_true: files('ne2000.c'))
6 system_ss.add(when: 'CONFIG_NE2000_PCI', if_true: files('ne2000-pci.c'))
7 system_ss.add(when: 'CONFIG_EEPRO100_PCI', if_true: files('eepro100.c'))
8 system_ss.add(when: 'CONFIG_PCNET_PCI', if_true: files('pcnet-pci.c'))
9 system_ss.add(when: 'CONFIG_PCNET_COMMON', if_true: files('pcnet.c'))
10 system_ss.add(when: 'CONFIG_E1000_PCI', if_true: files('e1000.c', 'e1000x_common.c'))
11 system_ss.add(when: 'CONFIG_E1000E_PCI_EXPRESS', if_true: files('net_tx_pkt.c', 'net_rx_pkt.c'))
12 system_ss.add(when: 'CONFIG_E1000E_PCI_EXPRESS', if_true: files('e1000e.c', 'e1000e_core.c', 'e1000…
[all …]
/openbmc/qemu/hw/virtio/
H A Dmeson.build2 system_virtio_ss.add(files('virtio-bus.c'))
3 system_virtio_ss.add(when: 'CONFIG_VIRTIO_PCI', if_true: files('virtio-pci.c'))
4 system_virtio_ss.add(when: 'CONFIG_VIRTIO_MMIO', if_true: files('virtio-mmio.c'))
5 system_virtio_ss.add(when: 'CONFIG_VIRTIO_CRYPTO', if_true: files('virtio-crypto.c'))
6 system_virtio_ss.add(when: 'CONFIG_VHOST_VSOCK_COMMON', if_true: files('vhost-vsock-common.c'))
7 system_virtio_ss.add(when: 'CONFIG_VIRTIO_IOMMU', if_true: files('virtio-iommu.c'))
8 system_virtio_ss.add(when: 'CONFIG_VHOST_VDPA_DEV', if_true: files('vdpa-dev.c'))
11 specific_virtio_ss.add(files('virtio.c'))
12 specific_virtio_ss.add(files('virtio-config-io.c', 'virtio-qmp.c'))
15 system_virtio_ss.add(files('vhost.c'))
[all …]
/openbmc/qemu/hw/char/
H A Dmeson.build1 system_ss.add(when: 'CONFIG_CADENCE', if_true: files('cadence_uart.c'))
2 system_ss.add(when: 'CONFIG_CMSDK_APB_UART', if_true: files('cmsdk-apb-uart.c'))
3 system_ss.add(when: 'CONFIG_ESCC', if_true: files('escc.c'))
4 system_ss.add(when: 'CONFIG_GRLIB', if_true: files('grlib_apbuart.c'))
5 system_ss.add(when: 'CONFIG_IBEX', if_true: files('ibex_uart.c'))
6 system_ss.add(when: 'CONFIG_IMX', if_true: files('imx_serial.c'))
7 system_ss.add(when: 'CONFIG_IPACK', if_true: files('ipoctal232.c'))
8 system_ss.add(when: 'CONFIG_ISA_BUS', if_true: files('parallel-isa.c'))
9 system_ss.add(when: 'CONFIG_ISA_DEBUG', if_true: files('debugcon.c'))
10 system_ss.add(when: 'CONFIG_NRF51_SOC', if_true: files('nrf51_uart.c'))
[all …]
/openbmc/qemu/stubs/
H A Dmeson.build1 # If possible, add new files to other directories, by using "if_false".
5 stub_ss.add(files('cpu-get-clock.c'))
6 stub_ss.add(files('error-printf.c'))
7 stub_ss.add(files('fdset.c'))
8 stub_ss.add(files('iothread-lock.c'))
9 stub_ss.add(files('is-daemonized.c'))
10 stub_ss.add(files('monitor-core.c'))
11 stub_ss.add(files('replay-mode.c'))
12 stub_ss.add(files('trace-control.c'))
15 stub_ss.add(files('bdrv-next-monitor-owned.c'))
[all …]
/openbmc/qemu/hw/timer/
H A Dmeson.build1 system_ss.add(when: 'CONFIG_A9_GTIMER', if_true: files('a9gtimer.c'))
2 system_ss.add(when: 'CONFIG_ALLWINNER_A10_PIT', if_true: files('allwinner-a10-pit.c'))
3 system_ss.add(when: 'CONFIG_ARM_MPTIMER', if_true: files('arm_mptimer.c'))
4 system_ss.add(when: 'CONFIG_ARM_TIMER', if_true: files('arm_timer.c'))
5 system_ss.add(when: 'CONFIG_ARM_V7M', if_true: files('armv7m_systick.c'))
6 system_ss.add(when: 'CONFIG_ASPEED_SOC', if_true: files('aspeed_timer.c'))
7 system_ss.add(when: 'CONFIG_CADENCE', if_true: files('cadence_ttc.c'))
8 system_ss.add(when: 'CONFIG_CMSDK_APB_DUALTIMER', if_true: files('cmsdk-apb-dualtimer.c'))
9 system_ss.add(when: 'CONFIG_CMSDK_APB_TIMER', if_true: files('cmsdk-apb-timer.c'))
10 system_ss.add(when: 'CONFIG_RENESAS_TMR', if_true: files('renesas_tmr.c'))
[all …]
/openbmc/qemu/hw/display/
H A Dmeson.build3 system_ss.add(when: 'CONFIG_DDC', if_true: files('i2c-ddc.c'))
4 system_ss.add(when: 'CONFIG_EDID', if_true: files('edid-generate.c', 'edid-region.c'))
6 system_ss.add(when: 'CONFIG_FW_CFG_DMA', if_true: files('ramfb.c'), if_false: files('ramfb-stubs.c'…
7 system_ss.add(when: 'CONFIG_FW_CFG_DMA', if_true: files('ramfb-standalone.c'))
9 system_ss.add(when: 'CONFIG_VGA_CIRRUS', if_true: files('cirrus_vga.c'))
10 system_ss.add(when: ['CONFIG_VGA_CIRRUS', 'CONFIG_VGA_ISA'], if_true: files('cirrus_vga_isa.c'))
11 system_ss.add(when: 'CONFIG_G364FB', if_true: files('g364fb.c'))
12 system_ss.add(when: 'CONFIG_JAZZ_LED', if_true: files('jazz_led.c'))
13 system_ss.add(when: 'CONFIG_PL110', if_true: files('pl110.c'))
14 system_ss.add(when: 'CONFIG_SII9022', if_true: files('sii9022.c'))
[all …]
/openbmc/qemu/hw/usb/
H A Dmeson.build4 system_ss.add(when: 'CONFIG_USB', if_true: files(
12 ), if_false: files('bus-stub.c'))
15 system_ss.add(when: 'CONFIG_USB_UHCI', if_true: files('hcd-uhci.c'))
16 system_ss.add(when: 'CONFIG_USB_UHCI_PCI', if_true: files('hcd-uhci-pci.c'))
17 system_ss.add(when: 'CONFIG_USB_UHCI_SYSBUS', if_true: files('hcd-uhci-sysbus.c'))
18 system_ss.add(when: 'CONFIG_USB_OHCI', if_true: files('hcd-ohci.c'))
19 system_ss.add(when: 'CONFIG_USB_OHCI_PCI', if_true: files('hcd-ohci-pci.c'))
20 system_ss.add(when: 'CONFIG_USB_OHCI_SYSBUS', if_true: files('hcd-ohci-sysbus.c'))
21 system_ss.add(when: 'CONFIG_USB_EHCI', if_true: files('hcd-ehci.c'))
22 system_ss.add(when: 'CONFIG_USB_EHCI_PCI', if_true: files('hcd-ehci-pci.c'))
[all …]
/openbmc/qemu/hw/acpi/
H A Dmeson.build2 acpi_ss.add(files(
9 acpi_ss.add(when: 'CONFIG_ACPI_CPU_HOTPLUG', if_true: files('cpu.c', 'cpu_hotplug.c'))
10 acpi_ss.add(when: 'CONFIG_ACPI_CPU_HOTPLUG', if_false: files('acpi-cpu-hotplug-stub.c'))
11 acpi_ss.add(when: 'CONFIG_ACPI_MEMORY_HOTPLUG', if_true: files('memory_hotplug.c'))
12 acpi_ss.add(when: 'CONFIG_ACPI_MEMORY_HOTPLUG', if_false: files('acpi-mem-hotplug-stub.c'))
13 acpi_ss.add(when: 'CONFIG_ACPI_NVDIMM', if_true: files('nvdimm.c'))
14 acpi_ss.add(when: 'CONFIG_ACPI_NVDIMM', if_false: files('acpi-nvdimm-stub.c'))
15 acpi_ss.add(when: 'CONFIG_ACPI_PCI', if_true: files('pci.c'))
16 acpi_ss.add(when: 'CONFIG_ACPI_CXL', if_true: files('cxl.c'), if_false: files('cxl-stub.c'))
17 acpi_ss.add(when: 'CONFIG_ACPI_VMGENID', if_true: files('vmgenid.c'))
[all …]
/openbmc/openbmc/poky/meta/lib/oeqa/selftest/cases/
H A Dpkgdata.py114 files = {}
119 files[curpkg].append(line.strip())
123 files[curpkg] = []
124 return files
131 files = splitoutput(result.output)
132 self.assertIn('zlib-dev', list(files.keys()), "listed pkgs. files: %s" %result.output)
133 self.assertIn('zlib-doc', list(files.keys()), "listed pkgs. files: %s" %result.output)
134 self.assertIn(os.path.join(includedir, 'zlib.h'), files['zlib-dev'])
135 self.assertIn(os.path.join(mandir, 'man3/zlib.3'), files['zlib-doc'])
138 files = splitoutput(result.output)
[all …]
/openbmc/qemu/hw/pci-host/
H A Dmeson.build2 pci_ss.add(when: 'CONFIG_PAM', if_true: files('pam.c'))
3 pci_ss.add(when: 'CONFIG_PCI_BONITO', if_true: files('bonito.c'))
4 pci_ss.add(when: 'CONFIG_GT64120', if_true: files('gt64120.c'))
5 pci_ss.add(when: 'CONFIG_PCI_EXPRESS_ASPEED', if_true: files('aspeed_pcie.c'))
6 pci_ss.add(when: 'CONFIG_PCI_EXPRESS_DESIGNWARE', if_true: files('designware.c'))
7 pci_ss.add(when: 'CONFIG_PCI_EXPRESS_GENERIC_BRIDGE', if_true: files('gpex.c'))
8 pci_ss.add(when: ['CONFIG_PCI_EXPRESS_GENERIC_BRIDGE', 'CONFIG_ACPI'], if_true: files('gpex-acpi.c'…
9 pci_ss.add(when: 'CONFIG_PCI_EXPRESS_Q35', if_true: files('q35.c'))
10 pci_ss.add(when: 'CONFIG_PCI_EXPRESS_XILINX', if_true: files('xilinx-pcie.c'))
11 pci_ss.add(when: 'CONFIG_PCI_I440FX', if_true: files('i440fx.c'))
[all …]
/openbmc/qemu/hw/i2c/
H A Dmeson.build2 i2c_ss.add(when: 'CONFIG_I2C', if_true: files('core.c'))
3 i2c_ss.add(when: 'CONFIG_SMBUS', if_true: files('smbus_slave.c', 'smbus_master.c'))
4 i2c_ss.add(when: 'CONFIG_ACPI_SMBUS', if_true: files('pm_smbus.c'))
5 i2c_ss.add(when: 'CONFIG_ACPI_ICH9', if_true: files('smbus_ich9.c'))
6 i2c_ss.add(when: 'CONFIG_ASPEED_SOC', if_true: files('aspeed_i2c.c'))
7 i2c_ss.add(when: 'CONFIG_BITBANG_I2C', if_true: files('bitbang_i2c.c'))
8 i2c_ss.add(when: 'CONFIG_EXYNOS4', if_true: files('exynos4210_i2c.c'))
9 i2c_ss.add(when: 'CONFIG_IMX_I2C', if_true: files('imx_i2c.c'))
10 i2c_ss.add(when: 'CONFIG_MPC_I2C', if_true: files('mpc_i2c.c'))
11 i2c_ss.add(when: 'CONFIG_ALLWINNER_I2C', if_true: files('allwinner-i2c.c'))
[all …]
/openbmc/qemu/hw/ppc/
H A Dmeson.build2 ppc_ss.add(files(
6 ppc_ss.add(when: 'CONFIG_FDT_PPC', if_true: files('fdt.c'))
7 ppc_ss.add(when: 'CONFIG_FW_CFG_PPC', if_true: files('fw_cfg.c'))
10 ppc_ss.add(when: 'CONFIG_PSERIES', if_true: files(
31 ppc_ss.add(when: ['CONFIG_PSERIES', 'CONFIG_TCG'], if_true: files(
34 ppc_ss.add(when: 'CONFIG_SPAPR_RNG', if_true: files('spapr_rng.c'))
36 ppc_ss.add(when: 'CONFIG_PSERIES', if_true: files(
42 ppc_ss.add(when: 'CONFIG_POWERNV', if_true: files(
60 ppc_ss.add(when: 'CONFIG_PPC405', if_true: files(
63 ppc_ss.add(when: 'CONFIG_PPC440', if_true: files(
[all …]
/openbmc/qemu/hw/i386/
H A Dmeson.build2 i386_ss.add(files(
11 i386_ss.add(when: 'CONFIG_APIC', if_true: files('vapic.c'))
12 i386_ss.add(when: 'CONFIG_X86_IOMMU', if_true: files('x86-iommu.c'),
13 if_false: files('x86-iommu-stub.c'))
14 i386_ss.add(when: 'CONFIG_AMD_IOMMU', if_true: files('amd_iommu.c'),
15 if_false: files('amd_iommu-stub.c'))
16 i386_ss.add(when: 'CONFIG_I440FX', if_true: files('pc_piix.c'))
17 i386_ss.add(when: 'CONFIG_MICROVM', if_true: files('x86-common.c', 'microvm.c', 'acpi-microvm.c', '…
18 i386_ss.add(when: 'CONFIG_NITRO_ENCLAVE', if_true: files('nitro_enclave.c'))
19 i386_ss.add(when: 'CONFIG_Q35', if_true: files('pc_q35.c'))
[all …]
/openbmc/qemu/net/
H A Dmeson.build1 system_ss.add(files(
21 system_ss.add(files('colo-compare.c'))
22 system_ss.add(files('colo.c'))
24 system_ss.add(files('colo-stubs.c'))
28 system_ss.add(files('filter-rewriter.c'))
31 system_ss.add(when: 'CONFIG_TCG', if_true: files('filter-replay.c'))
34 system_ss.add(files('l2tpv3.c'))
36 system_ss.add(when: slirp, if_true: files('slirp.c'))
37 system_ss.add(when: vde, if_true: files('vde.c'))
39 system_ss.add(files('netmap.c'))
[all …]
/openbmc/qemu/hw/nvram/
H A Dmeson.build1 system_ss.add(files('fw_cfg-interface.c'))
2 system_ss.add(files('fw_cfg.c'))
3 system_ss.add(when: 'CONFIG_RASPI', if_true: files('bcm2835_otp.c'))
4 system_ss.add(when: 'CONFIG_CHRP_NVRAM', if_true: files('chrp_nvram.c'))
5 system_ss.add(when: 'CONFIG_DS1225Y', if_true: files('ds1225y.c'))
6 system_ss.add(when: 'CONFIG_NMC93XX_EEPROM', if_true: files('eeprom93xx.c'))
7 system_ss.add(when: 'CONFIG_AT24C', if_true: files('eeprom_at24c.c'))
8 system_ss.add(when: 'CONFIG_MAC_NVRAM', if_true: files('mac_nvram.c'))
9 system_ss.add(when: 'CONFIG_NPCM7XX', if_true: files('npcm7xx_otp.c'))
10 system_ss.add(when: 'CONFIG_NRF51_SOC', if_true: files('nrf51_nvm.c'))
[all …]
/openbmc/qemu/hw/gpio/
H A Dmeson.build1 system_ss.add(when: 'CONFIG_GPIO_KEY', if_true: files('gpio_key.c'))
2 system_ss.add(when: 'CONFIG_GPIO_MPC8XXX', if_true: files('mpc8xxx.c'))
3 system_ss.add(when: 'CONFIG_GPIO_PWR', if_true: files('gpio_pwr.c'))
4 system_ss.add(when: 'CONFIG_PCA9552', if_true: files('pca9552.c'))
5 system_ss.add(when: 'CONFIG_PCA9554', if_true: files('pca9554.c'))
6 system_ss.add(when: 'CONFIG_PL061', if_true: files('pl061.c'))
7 system_ss.add(when: 'CONFIG_ZAURUS_SCOOP', if_true: files('zaurus.c'))
9 system_ss.add(when: 'CONFIG_IMX', if_true: files('imx_gpio.c'))
10 system_ss.add(when: 'CONFIG_NPCM7XX', if_true: files('npcm7xx_gpio.c'))
11 system_ss.add(when: 'CONFIG_NRF51_SOC', if_true: files('nrf51_gpio.c'))
[all …]
/openbmc/qemu/hw/audio/
H A Dmeson.build1 system_ss.add(files('soundhw.c'))
2 system_ss.add(when: 'CONFIG_AC97', if_true: files('ac97.c'))
3 system_ss.add(when: 'CONFIG_ADLIB', if_true: files('fmopl.c', 'adlib.c'))
4 system_ss.add(when: 'CONFIG_ASC', if_true: files('asc.c'))
5 system_ss.add(when: 'CONFIG_CS4231', if_true: files('cs4231.c'))
6 system_ss.add(when: 'CONFIG_CS4231A', if_true: files('cs4231a.c'))
7 system_ss.add(when: 'CONFIG_ES1370', if_true: files('es1370.c'))
8 system_ss.add(when: 'CONFIG_GUS', if_true: files('gus.c', 'gusemu_hal.c', 'gusemu_mixer.c'))
9 system_ss.add(when: 'CONFIG_HDA', if_true: files('intel-hda.c', 'hda-codec.c'))
10 system_ss.add(when: 'CONFIG_MARVELL_88W8618', if_true: files('marvell_88w8618.c'))
[all …]
/openbmc/qemu/block/
H A Dmeson.build2 block_ss.add(files(
44 system_ss.add(when: 'CONFIG_TCG', if_true: files('blkreplay.c'))
45 system_ss.add(files('block-ram-registrar.c'))
48 block_ss.add(files('qcow.c'))
51 block_ss.add(files('vdi.c'))
54 block_ss.add(files(
61 block_ss.add(files('vmdk.c'))
64 block_ss.add(files('vpc.c'))
67 block_ss.add(files('cloop.c'))
70 block_ss.add(files('bochs.c'))
[all …]
/openbmc/qemu/hw/ssi/
H A Dmeson.build1 system_ss.add(when: 'CONFIG_ALLWINNER_A10_SPI', if_true: files('allwinner-a10-spi.c'))
2 system_ss.add(when: 'CONFIG_ASPEED_SOC', if_true: files('aspeed_smc.c'))
3 system_ss.add(when: 'CONFIG_MSF2', if_true: files('mss-spi.c'))
4 system_ss.add(when: 'CONFIG_NPCM7XX', if_true: files('npcm7xx_fiu.c', 'npcm_pspi.c'))
5 system_ss.add(when: 'CONFIG_PL022', if_true: files('pl022.c'))
6 system_ss.add(when: 'CONFIG_SIFIVE_SPI', if_true: files('sifive_spi.c'))
7 system_ss.add(when: 'CONFIG_SSI', if_true: files('ssi.c'))
8 system_ss.add(when: 'CONFIG_STM32F2XX_SPI', if_true: files('stm32f2xx_spi.c'))
9 system_ss.add(when: 'CONFIG_XILINX_SPI', if_true: files('xilinx_spi.c'))
10 system_ss.add(when: 'CONFIG_XILINX_SPIPS', if_true: files('xilinx_spips.c'))
[all …]
/openbmc/qemu/hw/ide/
H A Dmeson.build1 system_ss.add(when: 'CONFIG_AHCI', if_true: files('ahci.c'))
2 system_ss.add(when: 'CONFIG_AHCI_ICH9', if_true: files('ich.c'))
3 system_ss.add(when: 'CONFIG_ALLWINNER_A10', if_true: files('ahci-allwinner.c'))
4 system_ss.add(when: 'CONFIG_IDE_BUS', if_true: files('ide-bus.c'))
5 system_ss.add(when: 'CONFIG_IDE_CF', if_true: files('cf.c'))
6 system_ss.add(when: 'CONFIG_IDE_CMD646', if_true: files('cmd646.c'))
7 system_ss.add(when: 'CONFIG_IDE_CORE', if_true: files('core.c', 'atapi.c'))
8 system_ss.add(when: 'CONFIG_IDE_DEV', if_true: files('ide-dev.c'))
9 system_ss.add(when: 'CONFIG_IDE_ISA', if_true: files('isa.c', 'ioport.c'))
10 system_ss.add(when: 'CONFIG_IDE_MACIO', if_true: files('macio.c'))
[all …]

12345678910>>...162