summaryrefslogtreecommitdiffstats
path: root/device/Makefile
diff options
context:
space:
mode:
authorMyles Watson <mylesgw@gmail.com>2009-02-25 17:50:38 +0000
committerMyles Watson <mylesgw@gmail.com>2009-02-25 17:50:38 +0000
commitcc295dd73a20f340cfab7e82a0a1d2a0a3b37edf (patch)
tree72062a461a260764115531a27abd1d264412b783 /device/Makefile
parent52bdacea134c881228f9617cfb6ba19b6d2a9e9f (diff)
downloadcoreboot-cc295dd73a20f340cfab7e82a0a1d2a0a3b37edf.tar.gz
coreboot-cc295dd73a20f340cfab7e82a0a1d2a0a3b37edf.tar.bz2
coreboot-cc295dd73a20f340cfab7e82a0a1d2a0a3b37edf.zip
This patch removes all *_PLUGIN_SUPPORT options and replaces most
*_SUPPORT options with NO_*_SUPPORT options. This means that you have to specify that you want a smaller BIOS, otherwise you get full functionality. HyperTransport is the only exception for a couple of reasons. HT requires a mainboard.h file which not all mainboards have, and it's less likely to be "plugged in" to a board that doesn't have some onboard HT. It also fixes a trivial typo in Kconfig (paylaod -> payload) Signed-off-by: Myles Watson <mylesgw@gmail.com> Acked-by: Peter Stuge <peter@stuge.se> git-svn-id: svn://coreboot.org/repository/coreboot-v3@1140 f3766cd6-281f-0410-b1cd-43a5c92072e9
Diffstat (limited to 'device/Makefile')
-rw-r--r--device/Makefile8
1 files changed, 4 insertions, 4 deletions
diff --git a/device/Makefile b/device/Makefile
index 727ad36af67f..ff4f4f745e57 100644
--- a/device/Makefile
+++ b/device/Makefile
@@ -32,19 +32,19 @@ ifeq ($(CONFIG_HYPERTRANSPORT_SUPPORT),y)
STAGE2_DEVICE_SRC += hypertransport.c
endif
-ifeq ($(CONFIG_PCIX_SUPPORT),y)
+ifneq ($(CONFIG_NO_PCIX_SUPPORT),y)
STAGE2_DEVICE_SRC += pcix_device.c
endif
-ifeq ($(CONFIG_PCIE_SUPPORT),y)
+ifneq ($(CONFIG_NO_PCIE_SUPPORT),y)
STAGE2_DEVICE_SRC += pcie_device.c
endif
-ifeq ($(CONFIG_CARDBUS_SUPPORT),y)
+ifneq ($(CONFIG_NO_CARDBUS_SUPPORT),y)
STAGE2_DEVICE_SRC += cardbus_device.c
endif
-ifeq ($(CONFIG_AGP_SUPPORT),y)
+ifneq ($(CONFIG_NO_AGP_SUPPORT),y)
STAGE2_DEVICE_SRC += agp_device.c
endif