aboutsummaryrefslogtreecommitdiff
path: root/nuttx/arch/sim
diff options
context:
space:
mode:
authorpatacongo <patacongo@7fd9a85b-ad96-42d3-883c-3090e2eb8679>2012-04-07 14:50:57 +0000
committerpatacongo <patacongo@7fd9a85b-ad96-42d3-883c-3090e2eb8679>2012-04-07 14:50:57 +0000
commit74ed2d1e6065f0ab0c66677a49f0dd7f3e5a5384 (patch)
tree475053c4902016a15723805c0144bd74d9598f7e /nuttx/arch/sim
parent36e37f5da4d016e033006db34bc8abad1d299b5d (diff)
downloadpx4-firmware-74ed2d1e6065f0ab0c66677a49f0dd7f3e5a5384.tar.gz
px4-firmware-74ed2d1e6065f0ab0c66677a49f0dd7f3e5a5384.tar.bz2
px4-firmware-74ed2d1e6065f0ab0c66677a49f0dd7f3e5a5384.zip
Updated Kconfig files from Lzyy
git-svn-id: https://nuttx.svn.sourceforge.net/svnroot/nuttx/trunk@4569 7fd9a85b-ad96-42d3-883c-3090e2eb8679
Diffstat (limited to 'nuttx/arch/sim')
-rw-r--r--nuttx/arch/sim/Kconfig41
1 files changed, 16 insertions, 25 deletions
diff --git a/nuttx/arch/sim/Kconfig b/nuttx/arch/sim/Kconfig
index 99650dcbb..08f9a5f63 100644
--- a/nuttx/arch/sim/Kconfig
+++ b/nuttx/arch/sim/Kconfig
@@ -1,21 +1,16 @@
-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
+#
+# For a description of the syntax of this configuration file,
+# see misc/tools/kconfig-language.txt.
+#
config ARCH
string
- default "sim" if ARCH_SIM
-
+ default "sim"
+
+config ARCH_SIM
+ bool
+ default y
+
choice
prompt "Simulator board type"
default ARCH_BOARD_SIM
@@ -28,18 +23,14 @@ config ARCH_BOARD_SIM
This port does not support interrupts or a real timer (and hence no
round robin scheduler) Otherwise, it is complete.
-endchoice
+config ARCH_BOARD_WIN32
+ bool "x86 Win32 user-mode(NOT SUPPORT)"
+ ---help---
+ THIS PORT NOT SUPPORT.
+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
-
-