summaryrefslogtreecommitdiff
path: root/nuttx/net
diff options
context:
space:
mode:
authorGregory Nutt <gnutt@nuttx.org>2013-10-23 11:48:57 -0600
committerGregory Nutt <gnutt@nuttx.org>2013-10-23 11:48:57 -0600
commitb51e2e092ba44bba94627aac1595a846310b9143 (patch)
tree58ad9dab4ffcc172595a72f468b0b767d05232a4 /nuttx/net
parent4d2c732d746cd8a3624886fbc83e0d31d5ca10f3 (diff)
downloadpx4-nuttx-b51e2e092ba44bba94627aac1595a846310b9143.tar.gz
px4-nuttx-b51e2e092ba44bba94627aac1595a846310b9143.tar.bz2
px4-nuttx-b51e2e092ba44bba94627aac1595a846310b9143.zip
Add logic to enable DEBUG_NET if NET=n but WL_CC3000=y
Diffstat (limited to 'nuttx/net')
-rw-r--r--nuttx/net/Kconfig12
1 files changed, 9 insertions, 3 deletions
diff --git a/nuttx/net/Kconfig b/nuttx/net/Kconfig
index 719f837d0..1a1d1e8e6 100644
--- a/nuttx/net/Kconfig
+++ b/nuttx/net/Kconfig
@@ -3,15 +3,21 @@
# see misc/tools/kconfig-language.txt.
#
+config ARCH_HAVE_NET
+ bool
+ default n
+
+config ARCH_HAVE_PHY
+ bool
+ default n
+
config NET
bool "Networking support"
default n
+ select ARCH_HAVE_NET
---help---
Enable or disable all network features
-config ARCH_HAVE_PHY
- bool
-
if NET
config NET_NOINTS