2012-04-07 22:50:57 +08:00
|
|
|
#
|
|
|
|
# For a description of the syntax of this configuration file,
|
|
|
|
# see misc/tools/kconfig-language.txt.
|
|
|
|
#
|
2012-04-06 01:44:04 +08:00
|
|
|
|
2012-04-11 10:04:59 +08:00
|
|
|
if ARCH_SIM
|
2012-04-06 01:44:04 +08:00
|
|
|
choice
|
|
|
|
prompt "Simulator board type"
|
|
|
|
default ARCH_BOARD_SIM
|
|
|
|
|
|
|
|
config ARCH_BOARD_SIM
|
|
|
|
bool "x86 Linux user-mode"
|
2012-04-11 10:04:59 +08:00
|
|
|
depends on ARCH_SIM
|
2012-04-06 01:44:04 +08:00
|
|
|
---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.
|
|
|
|
|
2012-04-07 22:50:57 +08:00
|
|
|
config ARCH_BOARD_WIN32
|
2012-04-11 10:04:59 +08:00
|
|
|
bool "x86 Win32 user-mode(NOT SUPPORTED)"
|
|
|
|
depends on ARCH_SIM
|
2012-04-07 22:50:57 +08:00
|
|
|
---help---
|
2012-04-11 10:04:59 +08:00
|
|
|
THIS PORT NOT SUPPORTED.
|
2012-04-06 01:44:04 +08:00
|
|
|
|
2012-04-07 22:50:57 +08:00
|
|
|
endchoice
|
2012-04-13 22:27:44 +08:00
|
|
|
|
|
|
|
config ARCH_BOARD
|
|
|
|
string
|
|
|
|
default "sim" if ARCH_BOARD_SIM
|
|
|
|
|
2012-04-11 10:04:59 +08:00
|
|
|
endif
|