Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 355513 | Differences between
and this patch

Collapse All | Expand All

(-)a/Makefile.objs (-1 / +1 lines)
Lines 170-176 hw-obj-y = Link Here
170
hw-obj-y += loader.o
170
hw-obj-y += loader.o
171
hw-obj-$(CONFIG_VIRTIO) += virtio.o virtio-console.o
171
hw-obj-$(CONFIG_VIRTIO) += virtio.o virtio-console.o
172
hw-obj-y += fw_cfg.o
172
hw-obj-y += fw_cfg.o
173
hw-obj-$(CONFIG_PCI) += pci_bridge.o
173
hw-obj-$(CONFIG_PCI) += pci.o pci_bridge.o
174
hw-obj-$(CONFIG_PCI) += msix.o msi.o
174
hw-obj-$(CONFIG_PCI) += msix.o msi.o
175
hw-obj-$(CONFIG_PCI) += pci_host.o pcie_host.o
175
hw-obj-$(CONFIG_PCI) += pci_host.o pcie_host.o
176
hw-obj-$(CONFIG_PCI) += ioh3420.o xio3130_upstream.o xio3130_downstream.o
176
hw-obj-$(CONFIG_PCI) += ioh3420.o xio3130_upstream.o xio3130_downstream.o
(-)a/Makefile.target (-1 / +1 lines)
Lines 195-201 endif #CONFIG_BSD_USER Link Here
195
# System emulator target
195
# System emulator target
196
ifdef CONFIG_SOFTMMU
196
ifdef CONFIG_SOFTMMU
197
obj-y = arch_init.o cpus.o monitor.o pci.o machine.o gdbstub.o vl.o balloon.o
197
obj-y = arch_init.o cpus.o monitor.o machine.o gdbstub.o vl.o balloon.o
198
# virtio has to be here due to weird dependency between PCI and virtio-net.
198
# virtio has to be here due to weird dependency between PCI and virtio-net.
199
# need to fix this properly
199
# need to fix this properly
200
obj-$(CONFIG_NO_PCI) += pci-stub.o
200
obj-$(CONFIG_NO_PCI) += pci-stub.o
(-)a/hw/pci.c (-1 / +1 lines)
Lines 29-36 Link Here
29
#include "net.h"
29
#include "net.h"
30
#include "sysemu.h"
30
#include "sysemu.h"
31
#include "loader.h"
31
#include "loader.h"
32
#include "qemu-kvm.h"
33
#include "hw/pc.h"
32
#include "hw/pc.h"
33
#include "kvm.h"
34
#include "device-assignment.h"
34
#include "device-assignment.h"
35
#include "qemu-objects.h"
35
#include "qemu-objects.h"
36
#include "range.h"
36
#include "range.h"

Return to bug 355513