mirror of
https://github.com/mii443/qemu.git
synced 2025-08-30 02:49:30 +00:00
Add Macintosh Quadra 800 machine in hw/m68k # gpg: Signature made Mon 28 Oct 2019 18:14:25 GMT # gpg: using RSA key CD2F75DDC8E3A4DC2E4F5173F30C38BD3F2FBE3C # gpg: issuer "laurent@vivier.eu" # gpg: Good signature from "Laurent Vivier <lvivier@redhat.com>" [full] # gpg: aka "Laurent Vivier <laurent@vivier.eu>" [full] # gpg: aka "Laurent Vivier (Red Hat) <lvivier@redhat.com>" [full] # Primary key fingerprint: CD2F 75DD C8E3 A4DC 2E4F 5173 F30C 38BD 3F2F BE3C * remotes/vivier/tags/q800-branch-pull-request: BootLinuxConsoleTest: Test the Quadra 800 hw/m68k: define Macintosh Quadra 800 hw/m68k: add a dummy SWIM floppy controller hw/m68k: add Nubus macfb video card hw/m68k: add Nubus support hw/m68k: implement ADB bus support for via hw/m68k: add VIA support dp8393x: manage big endian bus esp: add pseudo-DMA as used by Macintosh esp: move get_cmd() post-DMA code to get_cmd_cb() esp: move handle_ti_cmd() cleanup code to esp_do_dma(). Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
48 lines
1.3 KiB
Makefile
48 lines
1.3 KiB
Makefile
devices-dirs-y = core/
|
|
ifeq ($(CONFIG_SOFTMMU), y)
|
|
devices-dirs-$(call lor,$(CONFIG_VIRTIO_9P),$(call land,$(CONFIG_VIRTFS),$(CONFIG_XEN))) += 9pfs/
|
|
devices-dirs-y += acpi/
|
|
devices-dirs-y += adc/
|
|
devices-dirs-y += audio/
|
|
devices-dirs-y += block/
|
|
devices-dirs-y += bt/
|
|
devices-dirs-y += char/
|
|
devices-dirs-y += cpu/
|
|
devices-dirs-y += display/
|
|
devices-dirs-y += dma/
|
|
devices-dirs-y += gpio/
|
|
devices-dirs-$(CONFIG_HYPERV) += hyperv/
|
|
devices-dirs-$(CONFIG_I2C) += i2c/
|
|
devices-dirs-y += ide/
|
|
devices-dirs-y += input/
|
|
devices-dirs-y += intc/
|
|
devices-dirs-$(CONFIG_IPACK) += ipack/
|
|
devices-dirs-$(CONFIG_IPMI) += ipmi/
|
|
devices-dirs-y += isa/
|
|
devices-dirs-y += misc/
|
|
devices-dirs-y += net/
|
|
devices-dirs-y += rdma/
|
|
devices-dirs-y += nvram/
|
|
devices-dirs-y += pci/
|
|
devices-dirs-$(CONFIG_PCI) += pci-bridge/ pci-host/
|
|
devices-dirs-y += pcmcia/
|
|
devices-dirs-y += rtc/
|
|
devices-dirs-$(CONFIG_SCSI) += scsi/
|
|
devices-dirs-y += sd/
|
|
devices-dirs-y += ssi/
|
|
devices-dirs-y += timer/
|
|
devices-dirs-$(CONFIG_TPM) += tpm/
|
|
devices-dirs-y += usb/
|
|
devices-dirs-$(CONFIG_VFIO) += vfio/
|
|
devices-dirs-y += virtio/
|
|
devices-dirs-y += watchdog/
|
|
devices-dirs-y += xen/
|
|
devices-dirs-$(CONFIG_MEM_DEVICE) += mem/
|
|
devices-dirs-$(CONFIG_NUBUS) += nubus/
|
|
devices-dirs-y += semihosting/
|
|
devices-dirs-y += smbios/
|
|
endif
|
|
|
|
common-obj-y += $(devices-dirs-y)
|
|
obj-y += $(devices-dirs-y)
|