Fix some initial loop back device compilation errors; mark configuration as EXPERIMENTAL

This commit is contained in:
Gregory Nutt
2015-08-24 11:29:54 -06:00
parent ccb24e1766
commit 0b012c7978
7 changed files with 38 additions and 34 deletions
+7 -8
View File
@@ -1,7 +1,7 @@
############################################################################
# net/route/Make.defs
# net/loopback/Make.defs
#
# Copyright (C) 2014 Gregory Nutt. All rights reserved.
# Copyright (C) 2015 Gregory Nutt. All rights reserved.
# Author: Gregory Nutt <gnutt@nuttx.org>
#
# Redistribution and use in source and binary forms, with or without
@@ -33,16 +33,15 @@
#
############################################################################
ifeq ($(CONFIG_NET_ROUTE),y)
ifeq ($(CONFIG_NETDEV_LOOPBACK),y)
# Routing table support
# Local loopback support
SOCK_CSRCS += net_addroute.c net_allocroute.c net_delroute.c
SOCK_CSRCS += net_foreachroute.c net_router.c netdev_router.c
NETDEV_CSRCS += lo_globals.c
# Include routing table build support
DEPPATH += --dep-path route
VPATH += :route
DEPPATH += --dep-path loopback
VPATH += :loopback
endif