blob: 2b58f91751d25fbb0c5ddbdb8276c34dc6db3712 [file] [log] [blame]
Patrick Georgi0588d192009-08-12 15:00:51 +00001##
2## This file is part of the coreboot project.
3##
4## Copyright (C) 2007 coresystems GmbH
5## (Written by Stefan Reinauer <stepan@coresystems.de> for coresystems GmbH)
6##
7## This program is free software; you can redistribute it and/or modify
8## it under the terms of the GNU General Public License as published by
9## the Free Software Foundation; version 2 of the License
10##
11## This program is distributed in the hope that it will be useful,
12## but WITHOUT ANY WARRANTY; without even the implied warranty of
13## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14## GNU General Public License for more details.
15##
16## You should have received a copy of the GNU General Public License
17## along with this program; if not, write to the Free Software
18## Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
19##
20
21menu "Devices"
22
23config VGA_ROM_RUN
24 bool
25 help
26 Execute PCI/AGP option ROMs if available. This is required to
Uwe Hermann5ec2c2b2009-08-25 00:53:22 +000027 enable PCI/AGP VGA plugin cards.
Patrick Georgi0588d192009-08-12 15:00:51 +000028
29choice
Uwe Hermann5ec2c2b2009-08-25 00:53:22 +000030 prompt "Execute PCI option ROMs"
31 default PCI_OPTION_ROM_RUN_REALMODE
32 help
33 Execute PCI/AGP option ROMs if available. You can choose to
34 execute PCI option ROMs natively (32bit x86 system required),
35 in an emulator (x86emu), or ignore option ROM execution.
Patrick Georgi0588d192009-08-12 15:00:51 +000036
Uwe Hermann5ec2c2b2009-08-25 00:53:22 +000037config PCI_OPTION_ROM_RUN_REALMODE
38 prompt "Run VGA ROMs"
39 bool
40 select VGA_ROM_RUN
41 help
42 Execute PCI/AGP option ROMs if available. This is required to
43 enable PCI/AGP VGA plugin cards.
Patrick Georgi0588d192009-08-12 15:00:51 +000044
Uwe Hermann5ec2c2b2009-08-25 00:53:22 +000045config NO_RUN
46 prompt "Do NOT run VGA ROMs"
47 bool
48 help
49 Do not execute PCI/AGP option ROMs.
Patrick Georgi0588d192009-08-12 15:00:51 +000050
51endchoice
Uwe Hermann5ec2c2b2009-08-25 00:53:22 +000052
Patrick Georgi0588d192009-08-12 15:00:51 +000053endmenu
Ronald G. Minnich876d7e92009-08-28 14:23:38 +000054
55config PCI_64BIT_PREF_MEM
56 bool
57 default n
58
59config HYPERTRANSPORT_PLUGIN_SUPPORT
60 bool
61 default n
62
63config PCIX_PLUGIN_SUPPORT
64 bool
65 default n
66
67config PCIEXP_PLUGIN_SUPPORT
68 bool
69 default n
70
71config AGP_PLUGIN_SUPPORT
72 bool
73 default n
74
75config CARDBUS_PLUGIN_SUPPORT
76 bool
77 default n
78
79
80