summaryrefslogtreecommitdiff
path: root/nuttx/net/Makefile
diff options
context:
space:
mode:
authorGregory Nutt <gnutt@nuttx.org>2013-09-06 09:18:07 -0600
committerGregory Nutt <gnutt@nuttx.org>2013-09-06 09:18:07 -0600
commit8601e2839ecae85978c6dd0aa372fb5ee2f1e4c6 (patch)
tree078b73be7d6f332af6feafff4bad529665f0fb32 /nuttx/net/Makefile
parent70d21b8c25966310cf3fc123092f10f297e8a653 (diff)
downloadpx4-nuttx-8601e2839ecae85978c6dd0aa372fb5ee2f1e4c6.tar.gz
px4-nuttx-8601e2839ecae85978c6dd0aa372fb5ee2f1e4c6.tar.bz2
px4-nuttx-8601e2839ecae85978c6dd0aa372fb5ee2f1e4c6.zip
Partial implementation of driver-based UDP backlog still missing some logic. From Max Holtzberg.
Diffstat (limited to 'nuttx/net/Makefile')
-rw-r--r--nuttx/net/Makefile10
1 files changed, 7 insertions, 3 deletions
diff --git a/nuttx/net/Makefile b/nuttx/net/Makefile
index 74540b67d..5c4812b9c 100644
--- a/nuttx/net/Makefile
+++ b/nuttx/net/Makefile
@@ -1,7 +1,7 @@
############################################################################
# net/Makefile
#
-# Copyright (C) 2007, 2008, 2011-2012 Gregory Nutt. All rights reserved.
+# Copyright (C) 2007, 2008, 2011-2013 Gregory Nutt. All rights reserved.
# Author: Gregory Nutt <gnutt@nuttx.org>
#
# Redistribution and use in source and binary forms, with or without
@@ -53,7 +53,7 @@ endif
# Socket options
ifeq ($(CONFIG_NET_SOCKOPTS),y)
-SOCK_CSRCS += setsockopt.c getsockopt.c
+SOCK_CSRCS += setsockopt.c getsockopt.c
ifneq ($(CONFIG_DISABLE_CLOCK),y)
SOCK_CSRCS += net_timeo.c net_dsec2timeval.c net_timeval2dsec.c
ifneq ($(CONFIG_NET_SLIP),y)
@@ -65,7 +65,7 @@ endif
# Support for network access using streams
ifneq ($(CONFIG_NFILE_STREAMS),0)
-SOCK_CSRCS += net_checksd.c
+SOCK_CSRCS += net_checksd.c
endif
# Support for operations on network devices
@@ -75,6 +75,10 @@ NETDEV_CSRCS = netdev_register.c netdev_ioctl.c net_poll.c netdev_txnotify.c \
netdev_findbyname.c netdev_findbyaddr.c netdev_count.c \
netdev_foreach.c netdev_unregister.c netdev_sem.c
+ifeq ($(CONFIG_NET_RXAVAIL),y)
+NETDEV_CSRCS +=netdev_rxnotify.c
+endif
+
include uip/Make.defs
endif