2012-04-06 23:49:35 +08:00
|
|
|
#
|
|
|
|
# For a description of the syntax of this configuration file,
|
2012-04-07 00:45:52 +08:00
|
|
|
# see misc/tools/kconfig-language.txt.
|
2012-04-06 23:49:35 +08:00
|
|
|
#
|
2012-04-18 05:23:10 +08:00
|
|
|
|
|
|
|
if ARCH_RGMP
|
2012-09-09 23:43:18 +08:00
|
|
|
comment "RGMP Configuration Options"
|
|
|
|
|
2012-04-18 05:23:10 +08:00
|
|
|
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
|
|
|
|
|
|
|
|
config RGMP_SUBARCH
|
|
|
|
string
|
|
|
|
default "arm" if RGMP_SUBARCH_ARM
|
|
|
|
default "x86" if RGMP_SUBARCH_X86
|
|
|
|
|
|
|
|
endif
|