summaryrefslogtreecommitdiff
path: root/nuttx/net/Kconfig
diff options
context:
space:
mode:
authorGregory Nutt <gnutt@nuttx.org>2015-01-18 09:23:22 -0600
committerGregory Nutt <gnutt@nuttx.org>2015-01-18 09:23:22 -0600
commit72d5747505bf3dd2638123f1f8a4da8acb700b9b (patch)
treefc4ba7d5c91e1a0f6064cd1fc38fde5d74107c30 /nuttx/net/Kconfig
parent22d7b5a5e0d81507504f120a04557fde83182700 (diff)
downloadpx4-nuttx-72d5747505bf3dd2638123f1f8a4da8acb700b9b.tar.gz
px4-nuttx-72d5747505bf3dd2638123f1f8a4da8acb700b9b.tar.bz2
px4-nuttx-72d5747505bf3dd2638123f1f8a4da8acb700b9b.zip
Networking: Some fixes for compilation when both IPv4 and IPv6 are enabled
Diffstat (limited to 'nuttx/net/Kconfig')
-rw-r--r--nuttx/net/Kconfig13
1 files changed, 5 insertions, 8 deletions
diff --git a/nuttx/net/Kconfig b/nuttx/net/Kconfig
index bb039d30f..0e3039cff 100644
--- a/nuttx/net/Kconfig
+++ b/nuttx/net/Kconfig
@@ -183,23 +183,20 @@ endmenu # Data link support
source "net/netdev/Kconfig"
-# Currently cannot select both IPv4 and IPv6
+menu "Internet Protocol Selection"
config NET_IPv4
- bool
- default y if !NET_IPv6
- default n if NET_IPv6
+ bool "IPv4"
+ default y
---help---
Build in support for IPv4.
-menu "Internet Protocol Selection"
- depends on EXPERIMENTAL
-
config NET_IPv6
bool "IPv6"
default n
+ depends on EXPERIMENTAL
---help---
- Build in support for IPv6. Not fully implemented.
+ Build in support for IPv6.
source "net/neighbor/Kconfig"
endmenu # Internet Protocol Selection