Don't unconditionally add support for cardbus and pci-x devices
[coreboot.git] / src / devices / Makefile.inc
1 ramstage-y += device.c
2 ramstage-y += root_device.c
3 ramstage-y += device_util.c
4 ramstage-y += pci_device.c
5 ramstage-$(CONFIG_HYPERTRANSPORT_PLUGIN_SUPPORT) += hypertransport.c
6 ramstage-$(CONFIG_PCIX_PLUGIN_SUPPORT) += pcix_device.c
7 ramstage-y += pciexp_device.c
8 ramstage-$(CONFIG_AGP_PLUGIN_SUPPORT) += agp_device.c
9 ramstage-$(CONFIG_CARDBUS_PLUGIN_SUPPORT) += cardbus_device.c
10 ramstage-y += pnp_device.c
11 ramstage-y += pci_ops.c
12 ramstage-y += smbus_ops.c
13
14 subdirs-y += oprom
15
16 ifeq ($(CONFIG_PCI_ROM_RUN),y)
17 ramstage-y += pci_rom.c
18 else
19 ramstage-$(CONFIG_VGA_ROM_RUN) += pci_rom.c
20 endif
21