summaryrefslogtreecommitdiff
path: root/nuttx/arch/rgmp/Kconfig
diff options
context:
space:
mode:
Diffstat (limited to 'nuttx/arch/rgmp/Kconfig')
-rw-r--r--nuttx/arch/rgmp/Kconfig24
1 files changed, 24 insertions, 0 deletions
diff --git a/nuttx/arch/rgmp/Kconfig b/nuttx/arch/rgmp/Kconfig
index ae2bf3130..7cc5fcc97 100644
--- a/nuttx/arch/rgmp/Kconfig
+++ b/nuttx/arch/rgmp/Kconfig
@@ -2,3 +2,27 @@
# For a description of the syntax of this configuration file,
# see misc/tools/kconfig-language.txt.
#
+
+if ARCH_RGMP
+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