aboutsummaryrefslogtreecommitdiff
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
commitb5167ec3a4f1096bc1ef7874541277fca4e01b72 (patch)
treefae73dac595abc75e70c233348db88f09a53d45c /nuttx/Kconfig
parentd04ce723f0872cda3ebcc496efd45965a6ec3a70 (diff)
downloadpx4-firmware-b5167ec3a4f1096bc1ef7874541277fca4e01b72.tar.gz
px4-firmware-b5167ec3a4f1096bc1ef7874541277fca4e01b72.tar.bz2
px4-firmware-b5167ec3a4f1096bc1ef7874541277fca4e01b72.zip
UG-2864AMBAG01 driver is basically functional
git-svn-id: http://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"