soc/intel/fsp_broadwell_de: Move FSP_DEBUG_LEVEL option here
[coreboot.git] / payloads / coreinfo / Kconfig
blobfd4c1b4a222a18d46010afed0da214ee8dac1fdb
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.
17 # For a description of the syntax of this configuration file,
18 # see http://lxr.linux.no/source/Documentation/kbuild/kconfig-language.txt.
21 mainmenu "coreinfo Configuration"
23 menu "General settings"
25 # TODO: Needs changes in coreinfo, won't update without keypress currently.
26 config SHOW_DATE_TIME
27         bool "Show current date/time in the menu"
28         default y
29         help
30           Show the current date and time in the lower-right corner of
31           the coreinfo menu.
33           This option will increase the ELF file size by ca. 250 bytes.
35 config PAYLOAD_INFO_NAME
36         string "Payload name"
37         default "coreinfo"
38         help
39           The name of this payload for use in (e.g.) Bayou.
41 config PAYLOAD_INFO_LISTNAME
42         string "Payload menu entry name"
43         default "System Information"
44         help
45           The name of this payload's menu entry for use in (e.g.) Bayou.
47 config PAYLOAD_INFO_DESC
48         string "Payload description"
49         default "Display information about the system"
50         help
51           The description of this payload for use in (e.g.) Bayou.
53 config PAYLOAD_INFO_VERSION
54         string "Payload version"
55         default "0.1"
56         help
57           The version number of this payload.
59 endmenu
61 menu "Modules"
63 config MODULE_COREBOOT
64         bool "Enable the coreboot module"
65         default y
66         help
67           This option will increase the ELF file size by ca. 2250 bytes.
69 config MODULE_MULTIBOOT
70         bool "Enable the multiboot module"
71         default y
72         help
73           This option will increase the ELF file size by ca. 1790 bytes.
75 config MODULE_CPUINFO
76         bool "Enable the cpuinfo module"
77         default y
78         help
79           This option will increase the ELF file size by ca. 2650 bytes.
81 config MODULE_PCI
82         bool "Enable the PCI info module"
83         default y
84         help
85           This option will increase the ELF file size by ca. 1750 bytes.
87 config MODULE_NVRAM
88         bool "Enable the NVRAM dump module"
89         default y
90         help
91           This option will increase the ELF file size by ca. 350 bytes.
93 config MODULE_BOOTLOG
94         bool "Enable the coreboot bootlog module"
95         default y
97 config MODULE_RAMDUMP
98         bool "Enable the RAM dump module"
99         default y
101 config MODULE_CBFS
102         bool "Enable the coreboot CBFS module"
103         default y
104         help
105           This option will increase the ELF file size by ca. 1440 bytes.
107 config MODULE_TIMESTAMPS
108         bool "Enable the coreboot timestamps module"
109         default y
110         help
111           This option will increase the ELF file size by ca. 4200 bytes.
113 endmenu