summaryrefslogtreecommitdiff
path: root/nuttx/Kconfig
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2012-11-09 17:37:27 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2012-11-09 17:37:27 +0000
commit332cf8e16d4b3ade203b6f886c152a25c1972591 (patch)
treefae73dac595abc75e70c233348db88f09a53d45c /nuttx/Kconfig
parent42a56e78dda5561d301ec2e61a0bac17e7342525 (diff)
downloadpx4-nuttx-332cf8e16d4b3ade203b6f886c152a25c1972591.tar.gz
px4-nuttx-332cf8e16d4b3ade203b6f886c152a25c1972591.tar.bz2
px4-nuttx-332cf8e16d4b3ade203b6f886c152a25c1972591.zip
UG-2864AMBAG01 driver is basically functional
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5325 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/Kconfig')
-rw-r--r--nuttx/Kconfig38
1 files changed, 38 insertions, 0 deletions
diff --git a/nuttx/Kconfig b/nuttx/Kconfig
index 2d5b9e585..b647a49f8 100644
--- a/nuttx/Kconfig
+++ b/nuttx/Kconfig
@@ -20,7 +20,45 @@ menu "Build Setup"
config EXPERIMENTAL
bool "Prompt for development and/or incomplete code/drivers"
+choice
+ prompt "Build Host Platform"
+ default HOST_LINUX
+
+config HOST_LINUX
+ bool "Linux"
+
+config HOST_OSX
+ bool "OSX"
+
+config HOST_WINDOWS
+ bool "Windows"
+
+config HOST_OTHER
+ bool "Other"
+
+endchoice
+
+choice
+ prompt "Windows Build Environment"
+ default WINDOWS_CYGWIN
+ depends on HOST_WINDOWS
+
+config WINDOWS_NATIVE
+ bool "Windows Native"
+
+config WINDOWS_CYGWIN
+ bool "Cygwin"
+
+config WINDOWS_MSYS
+ bool "MSYS"
+
+config WINDOWS_OTHER
+ bool "Other"
+
+endchoice
+
menu "Build Configuration"
+
config APPS_DIR
string "Application directory"
default "../apps"