summaryrefslogtreecommitdiffstats
path: root/platforms/Kconfig
blob: b776517da0966462f65c4c463da402493d36de8d (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
53
54
55
56
#
# platforms/Kconfig: main menu structure for platform configuration
#

mainmenu "PTXdist $PLATFORMCONFIG_VERSION"

source "platforms/ptxdist-version.in"
source "rules/ptxdist-dgen.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 "workspace/platforms/kernel.in"
source "platforms/dtc.in"
source "platforms/console.in"

menu "extra kernel                  "
source "generated/kernel.in"
endmenu

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


source "platforms/flash.in"

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

source "workspace/platforms/hosttools.in"