summaryrefslogtreecommitdiffstats
path: root/platforms/Kconfig
blob: d7b990ed43a7f87e82a7e376049deda42341c020 (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
44
45
46
47
48
49
50
51
52
#
# platforms/Kconfig: main menu structure for platform configuration
#

mainmenu "PTXdist $PLATFORMCONFIG_VERSION"

source "platforms/ptxdist-version.in"

config _platformconfig_MAGIC__
        bool
        default y


comment "------------------------------------"
comment "Target Platform Configuration "
comment "------------------------------------"

config PLATFORM
	prompt "platform name"
	string
	help
	  This string identifies the platform. You should give a concise name
	  here. But if you do not have multiple platforms in this project and
	  you want a ptxdist-1 behaviour (less or more flat directories), keep
	  this entry empty.

config PLATFORM_VERSION
	prompt "platform version"
	string
	default "-trunk"
	help
	  This is the revision of the platform.
	  The string is supposed to start with an "-".

source "platforms/architecture.in"
source "platforms/kernel.in"
source "platforms/dtc.in"
source "platforms/console.in"


menu "bootloaders                   "
source "generated/bootloader.in"
endmenu


source "platforms/flash.in"

menu "image creation options        "
source "generated/image.in"
endmenu

source "platforms/hosttools.in"