blob: 461cd24999113a7c05eb532709be7f63c9004546 [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 Hermann941c1fd2009-07-07 15:10:13 +000037 This option will increase the ELF file size by ca. 250 bytes.
Uwe Hermanna6977212008-04-04 13:28:10 +000038
Uwe Hermanna70872cf2008-08-05 14:36:20 +000039config PAYLOAD_INFO_NAME
40 string "Payload name"
41 default "coreinfo"
42 help
43 The name of this payload for use in (e.g.) Bayou.
44
45config PAYLOAD_INFO_LISTNAME
46 string "Payload menu entry name"
47 default "System Information"
48 help
49 The name of this payload's menu entry for use in (e.g.) Bayou.
50
51config PAYLOAD_INFO_DESC
52 string "Payload description"
53 default "Display information about the system"
54 help
55 The description of this payload for use in (e.g.) Bayou.
56
57config PAYLOAD_INFO_VERSION
58 string "Payload version"
59 default "0.1"
60 help
61 The version number of this payload.
62
Uwe Hermannab5b3e02008-03-31 20:30:18 +000063endmenu
64
65menu "Modules"
Uwe Hermann2216d1b2008-03-24 15:47:49 +000066
67config MODULE_COREBOOT
68 bool "Enable the coreboot module"
69 default y
Uwe Hermanna6977212008-04-04 13:28:10 +000070 help
71 This option will increase the ELF file size by ca. 2250 bytes.
Uwe Hermann2216d1b2008-03-24 15:47:49 +000072
Jordan Crouse5cb4d9d2008-11-11 19:53:42 +000073config MODULE_MULTIBOOT
74 bool "Enable the multiboot module"
75 default y
76 help
Uwe Hermann941c1fd2009-07-07 15:10:13 +000077 This option will increase the ELF file size by ca. 1790 bytes.
Jordan Crouse5cb4d9d2008-11-11 19:53:42 +000078
Uwe Hermann2216d1b2008-03-24 15:47:49 +000079config MODULE_CPUINFO
80 bool "Enable the cpuinfo module"
81 default y
Uwe Hermanna6977212008-04-04 13:28:10 +000082 help
83 This option will increase the ELF file size by ca. 2650 bytes.
Uwe Hermann2216d1b2008-03-24 15:47:49 +000084
85config MODULE_PCI
86 bool "Enable the PCI info module"
87 default y
Uwe Hermanna6977212008-04-04 13:28:10 +000088 help
89 This option will increase the ELF file size by ca. 1750 bytes.
Uwe Hermann2216d1b2008-03-24 15:47:49 +000090
Uwe Hermannab5b3e02008-03-31 20:30:18 +000091config MODULE_NVRAM
92 bool "Enable the NVRAM dump module"
93 default y
Uwe Hermanna6977212008-04-04 13:28:10 +000094 help
Uwe Hermann16acf8b2008-04-22 16:56:21 +000095 This option will increase the ELF file size by ca. 350 bytes.
Uwe Hermannab5b3e02008-03-31 20:30:18 +000096
Uwe Hermann0ab8cdd2008-04-22 20:19:53 +000097config MODULE_BOOTLOG
98 bool "Enable the coreboot bootlog module"
99 default y
100
Uwe Hermann2fbbb292008-07-08 16:18:38 +0000101config MODULE_RAMDUMP
102 bool "Enable the RAM dump module"
103 default y
104
Jordan Crouseaa6e3782008-05-07 20:43:15 +0000105config MODULE_LAR
106 bool "Enable the coreboot LAR module"
107 default y
108
Uwe Hermann941c1fd2009-07-07 15:10:13 +0000109config MODULE_CBFS
110 bool "Enable the coreboot CBFS module"
111 default y
112 help
113 This option will increase the ELF file size by ca. 1440 bytes.
114
Uwe Hermann2216d1b2008-03-24 15:47:49 +0000115endmenu
116