summaryrefslogtreecommitdiff
path: root/nuttx/arch/rgmp/Kconfig
blob: 2f9cead0797ab14752feb92871d17d3f7f4685f5 (plain) (blame)
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
#
# For a description of the syntax of this configuration file,
# see misc/tools/kconfig-language.txt.
#

if ARCH_RGMP
comment "RGMP Configuration Options"

choice
	prompt "RGMP Architecture"
	default RGMP_SUBARCH_X86

config RGMP_SUBARCH_ARM
	bool "ARM"
	---help---
		RGMP ARM architecture"

config RGMP_SUBARCH_X86
	bool "x86"
	---help---
		RGMP x86 architecture"

endchoice # RGMP Architecture

config RGMP_SUBARCH
	string
	default "arm"		if RGMP_SUBARCH_ARM
	default "x86"		if RGMP_SUBARCH_X86

menu "x86 Peripheral Selections"
	depends on RGMP_SUBARCH_X86

config COM1
	bool "COM1"

config COM2
	bool "COM1"

config COM3
	bool "COM1"

config COM4
	bool "COM1"

endmenu # x86 Peripheral Selections
endif # ARCH_RGMP