You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
749 B
36 lines
749 B
# |
|
# For a description of the syntax of this configuration file, |
|
# see misc/tools/kconfig-language.txt. |
|
# |
|
|
|
config ARCH |
|
string |
|
default "sim" |
|
|
|
config ARCH_SIM |
|
bool |
|
default y |
|
|
|
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. |
|
|
|
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 |
|
|
|
|