blob: 37bfa6bd3656081c6c228a5aa0561fc91b04ef8f [file] [log] [blame]
Uwe Hermann2216d1b2008-03-24 15:47:49 +00001##
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
25mainmenu "coreinfo Configuration"
26
Uwe Hermannab5b3e02008-03-31 20:30:18 +000027menu "General settings"
Uwe Hermann2216d1b2008-03-24 15:47:49 +000028
Uwe Hermannab5b3e02008-03-31 20:30:18 +000029# TODO: Needs changes in coreinfo, won't update without keypress currently.
30config 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
Uwe Hermanna6977212008-04-04 13:28:10 +000037 This option will increase the ELF file size by ca. 256 bytes.
38
Uwe Hermannab5b3e02008-03-31 20:30:18 +000039endmenu
40
41menu "Modules"
Uwe Hermann2216d1b2008-03-24 15:47:49 +000042
43config MODULE_COREBOOT
44 bool "Enable the coreboot module"
45 default y
Uwe Hermanna6977212008-04-04 13:28:10 +000046 help
47 This option will increase the ELF file size by ca. 2250 bytes.
Uwe Hermann2216d1b2008-03-24 15:47:49 +000048
49config MODULE_CPUINFO
50 bool "Enable the cpuinfo module"
51 default y
Uwe Hermanna6977212008-04-04 13:28:10 +000052 help
53 This option will increase the ELF file size by ca. 2650 bytes.
Uwe Hermann2216d1b2008-03-24 15:47:49 +000054
55config MODULE_PCI
56 bool "Enable the PCI info module"
57 default y
Uwe Hermanna6977212008-04-04 13:28:10 +000058 help
59 This option will increase the ELF file size by ca. 1750 bytes.
Uwe Hermann2216d1b2008-03-24 15:47:49 +000060
Uwe Hermannab5b3e02008-03-31 20:30:18 +000061config MODULE_NVRAM
62 bool "Enable the NVRAM dump module"
63 default y
Uwe Hermanna6977212008-04-04 13:28:10 +000064 help
Uwe Hermann16acf8b2008-04-22 16:56:21 +000065 This option will increase the ELF file size by ca. 350 bytes.
Uwe Hermannab5b3e02008-03-31 20:30:18 +000066
Uwe Hermann0ab8cdd2008-04-22 20:19:53 +000067config MODULE_BOOTLOG
68 bool "Enable the coreboot bootlog module"
69 default y
70
Uwe Hermann2216d1b2008-03-24 15:47:49 +000071endmenu
72