Kconfig!
[coreboot.git] / src / devices / Kconfig
1 ##
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
21 menu "Devices"
22
23 config VGA_ROM_RUN
24         bool
25         help
26           Execute PCI/AGP option ROMs if available. This is required to
27           enable PCI/AGP VGA plugin cards. 
28
29 choice
30         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.
36
37         config 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. 
44
45         config NO_RUN
46                 prompt "DO NOT Run VGA ROMs"
47                 bool
48                 help
49                 Execute PCI/AGP option ROMs if available. This is required to
50                 enable PCI/AGP VGA plugin cards. 
51
52 endchoice
53 endmenu