Replace lwip SDK blob with lwip 1.4.1 upstream source

Compiles but won't work yet
This commit is contained in:
Angus Gratton 2015-05-12 10:12:50 +10:00
parent 496c5a8330
commit 806962d5c7
75 changed files with 1203 additions and 13257 deletions

15
lwip/component.mk Normal file
View file

@ -0,0 +1,15 @@
# Component makefile for LWIP
LWIP_DIR = $(ROOT)lwip/lwip/src/
INC_DIRS += $(LWIP_DIR)/include $(ROOT)/lwip/include $(ROOT)lwip/include $(LWIP_DIR)include/ipv4 $(LWIP_DIR)include/ipv4/lwip
# args for passing into compile rule generation
lwip_ROOT = $(ROOT)/lwip
lwip_INC_DIR = # all in INC_DIRS, needed for normal operation
lwip_SRC_DIR = $(ROOT)/lwip $(LWIP_DIR)api $(LWIP_DIR)core $(LWIP_DIR)core/ipv4 $(LWIP_DIR)netif
# LWIP 1.4.1 generates a single warning so we need to disable -Werror when building it
lwip_CFLAGS = $(subst -Werror,,$(CFLAGS))
$(eval $(call component_compile_rules,lwip))