summaryrefslogtreecommitdiffstats
path: root/config/Kconfig
blob: 35449675994bc79f413ed0ade6df217b5d28eff9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
#
# config/Kconfig: Main menu structure definition
# Copyright (C) Robert Schwebel <r.schwebel@pengutronix.de> 2002, 2003, 2004
#

mainmenu "Configuration"

# We need this: otherwhise kconfig doesn't handle tristate entries!!
config MODULES
        bool
        default y

config PTXCONF
	bool
	default y
	help
	  This is the Pengutronix Distribution Build System.

comment "------------------------------------"

menu "Project Name & Version        "

comment "Project Name & Version        "

config PROJECT
	string
	prompt "project name        "
	help
	  Name of this project; each PTXdist "Project" specifies a unique
	  configuration for an embedded Linux project.

	  Usually you don't have to set this config option; change it
	  only if you want to have some non-default name.

config PROJECT_VERSION
	string
	prompt "project version     "
	help
	  Version of this project.

endmenu

source "rules/Kconfig"