Skip to content
Snippets Groups Projects
Commit 29515a7b authored by Martine Lenders's avatar Martine Lenders
Browse files

pkg: initial import of lwIP package

parent f626ee59
No related branches found
No related tags found
No related merge requests found
...@@ -354,6 +354,11 @@ ifneq (,$(filter posix_semaphore,$(USEMODULE))) ...@@ -354,6 +354,11 @@ ifneq (,$(filter posix_semaphore,$(USEMODULE)))
USEMODULE += xtimer USEMODULE += xtimer
endif endif
ifneq (,$(filter lwip,$(USEMODULE)))
USEPKG += lwip
USEMODULE += lwip_core
endif
ifneq (,$(filter sema,$(USEMODULE))) ifneq (,$(filter sema,$(USEMODULE)))
USEMODULE += xtimer USEMODULE += xtimer
endif endif
......
PKG_NAME=lwip
PKG_URL=git://git.savannah.nongnu.org/lwip.git
PKG_VERSION=fd4a109ffa6513b28a0c780a952cef1110423717
PKG_BUILDDIR ?= $(BINDIRBASE)/pkg/$(BOARD)/$(PKG_NAME)
.PHONY: all
all: git-download
$(MAKE) -C $(PKG_BUILDDIR)
include $(RIOTBASE)/pkg/pkg.mk
INCLUDES += -I$(RIOTBASE)/pkg/lwip/include \
-I$(BINDIRBASE)/pkg/$(BOARD)/lwip/src/include
/**
* @defgroup pkg_lwip lwIP network stack
* @ingroup pkg
* @brief Provides the lwIP network stack
* @see http://savannah.nongnu.org/projects/lwip/
*/
File suppressed by a .gitattributes entry or the file's encoding is unsupported.
File suppressed by a .gitattributes entry or the file's encoding is unsupported.
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment