summaryrefslogtreecommitdiff
path: root/nuttx/net
diff options
context:
space:
mode:
authorGregory Nutt <gnutt@nuttx.org>2014-11-15 14:36:49 -0600
committerGregory Nutt <gnutt@nuttx.org>2014-11-15 14:36:49 -0600
commit4146524b7d414d998b84c272cb7e4b2378e263bc (patch)
tree32f8648934c70ad7e13aebb73b9be297beefbe86 /nuttx/net
parent9985a45d382240fb0cca302e5105de638783cbf5 (diff)
downloadpx4-nuttx-4146524b7d414d998b84c272cb7e4b2378e263bc.tar.gz
px4-nuttx-4146524b7d414d998b84c272cb7e4b2378e263bc.tar.bz2
px4-nuttx-4146524b7d414d998b84c272cb7e4b2378e263bc.zip
Network: Update SLIP configuration; Fix compile issues when building SLIP only
Diffstat (limited to 'nuttx/net')
-rw-r--r--nuttx/net/Kconfig3
1 files changed, 2 insertions, 1 deletions
diff --git a/nuttx/net/Kconfig b/nuttx/net/Kconfig
index 2eba66c9e..526eb3722 100644
--- a/nuttx/net/Kconfig
+++ b/nuttx/net/Kconfig
@@ -96,7 +96,8 @@ config NET_MULTILINK
config NET_ETHERNET
bool "Ethernet support"
- default y
+ default y if !NET_SLIP
+ default n if NET_SLIP
select NETDEV_MULTINIC if NET_SLIP
select NET_MULTILINK if NET_SLIP
---help---