Add support for an "NVRAM Dump" screen in coreinfo (optional), as well as for
[coreboot.git] / payloads / coreinfo / Kconfig
1 ##
2 ## This file is part of the coreinfo project.
3 ##
4 ## Copyright (C) 2008 Uwe Hermann <uwe@hermann-uwe.de>
5 ##
6 ## This program is free software; you can redistribute it and/or modify
7 ## it under the terms of the GNU General Public License as published by
8 ## the Free Software Foundation; version 2 of the License.
9 ##
10 ## This program is distributed in the hope that it will be useful,
11 ## but WITHOUT ANY WARRANTY; without even the implied warranty of
12 ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 ## GNU General Public License for more details.
14 ##
15 ## You should have received a copy of the GNU General Public License
16 ## along with this program; if not, write to the Free Software
17 ## Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
18 ##
19
20 #
21 # For a description of the syntax of this configuration file,
22 # see http://lxr.linux.no/source/Documentation/kbuild/kconfig-language.txt.
23 #
24
25 mainmenu "coreinfo Configuration"
26
27 menu "General settings"
28
29 # TODO: Needs changes in coreinfo, won't update without keypress currently.
30 config SHOW_DATE_TIME
31         bool "Show current date/time in the menu"
32         default y
33         help
34           Show the current date and time in the lower-right corner of
35           the coreinfo menu.
36
37 endmenu
38
39 menu "Modules"
40
41 config MODULE_COREBOOT
42         bool "Enable the coreboot module"
43         default y
44
45 config MODULE_CPUINFO
46         bool "Enable the cpuinfo module"
47         default y
48
49 config MODULE_PCI
50         bool "Enable the PCI info module"
51         default y
52
53 config MODULE_NVRAM
54         bool "Enable the NVRAM dump module"
55         default y
56
57 endmenu
58