aboutsummaryrefslogtreecommitdiff
path: root/nuttx/arch/sim/Kconfig
diff options
context:
space:
mode:
authorpatacongo <patacongo@7fd9a85b-ad96-42d3-883c-3090e2eb8679>2012-04-05 17:44:04 +0000
committerpatacongo <patacongo@7fd9a85b-ad96-42d3-883c-3090e2eb8679>2012-04-05 17:44:04 +0000
commit48c8d782f9bbbeb78eed93d9ed928351dfd7a735 (patch)
tree6f91b9b19d0a241c182bacdb0a621f438e2abf56 /nuttx/arch/sim/Kconfig
parent534506e27296592ccaf6badc86f5e60859473d58 (diff)
downloadpx4-firmware-48c8d782f9bbbeb78eed93d9ed928351dfd7a735.tar.gz
px4-firmware-48c8d782f9bbbeb78eed93d9ed928351dfd7a735.tar.bz2
px4-firmware-48c8d782f9bbbeb78eed93d9ed928351dfd7a735.zip
Beginning of a NuttX configuration tool
git-svn-id: https://nuttx.svn.sourceforge.net/svnroot/nuttx/trunk@4560 7fd9a85b-ad96-42d3-883c-3090e2eb8679
Diffstat (limited to 'nuttx/arch/sim/Kconfig')
-rw-r--r--nuttx/arch/sim/Kconfig45
1 files changed, 45 insertions, 0 deletions
diff --git a/nuttx/arch/sim/Kconfig b/nuttx/arch/sim/Kconfig
new file mode 100644
index 000000000..99650dcbb
--- /dev/null
+++ b/nuttx/arch/sim/Kconfig
@@ -0,0 +1,45 @@
+choice
+ prompt "Simulator system type"
+ default ARCH_SIM
+
+config ARCH_SIM
+ bool "x86 Linux user-mode"
+ ---help---
+ A user-mode port of NuttX to the x86 Linux platform is available.
+ The purpose of this port is primarily to support OS feature development.
+ This port does not support interrupts or a real timer (and hence no
+ round robin scheduler) Otherwise, it is complete.
+
+endchoice
+
+config ARCH
+ string
+ default "sim" if ARCH_SIM
+
+choice
+ prompt "Simulator board type"
+ default ARCH_BOARD_SIM
+
+config ARCH_BOARD_SIM
+ bool "x86 Linux user-mode"
+ ---help---
+ A user-mode port of NuttX to the x86 Linux platform is available.
+ The purpose of this port is primarily to support OS feature development.
+ This port does not support interrupts or a real timer (and hence no
+ round robin scheduler) Otherwise, it is complete.
+
+endchoice
+
+config ARCH_BOARD
+ string
+ default "sim" if ARCH_BOARD_SIM
+
+comment "OMAP Board Type"
+ depends on ARCH_OMAP2PLUS
+
+config MACH_OMAP_GENERIC
+ bool "Generic OMAP board"
+ depends on ARCH_OMAP2
+ default y
+
+