dynamic loading of network stack no longer needed
This commit is contained in:
1
ext/picotcp/rules/crc.mk
Normal file
1
ext/picotcp/rules/crc.mk
Normal file
@@ -0,0 +1 @@
|
||||
OPTIONS+=-DPICO_SUPPORT_CRC
|
||||
3
ext/picotcp/rules/cyassl.mk
Normal file
3
ext/picotcp/rules/cyassl.mk
Normal file
@@ -0,0 +1,3 @@
|
||||
OPTIONS+=-DPICO_SUPPORT_CYASSL
|
||||
LDFLAGS+=-lcyassl
|
||||
|
||||
2
ext/picotcp/rules/devloop.mk
Normal file
2
ext/picotcp/rules/devloop.mk
Normal file
@@ -0,0 +1,2 @@
|
||||
OPTIONS+=-DPICO_SUPPORT_DEVLOOP
|
||||
MOD_OBJ+=$(LIBBASE)modules/pico_dev_loop.o
|
||||
2
ext/picotcp/rules/dhcp_client.mk
Normal file
2
ext/picotcp/rules/dhcp_client.mk
Normal file
@@ -0,0 +1,2 @@
|
||||
OPTIONS+=-DPICO_SUPPORT_DHCPC
|
||||
MOD_OBJ+=$(LIBBASE)modules/pico_dhcp_client.o $(LIBBASE)modules/pico_dhcp_common.o
|
||||
2
ext/picotcp/rules/dhcp_server.mk
Normal file
2
ext/picotcp/rules/dhcp_server.mk
Normal file
@@ -0,0 +1,2 @@
|
||||
OPTIONS+=-DPICO_SUPPORT_DHCPD
|
||||
MOD_OBJ+=$(LIBBASE)modules/pico_dhcp_server.o $(LIBBASE)modules/pico_dhcp_common.o
|
||||
2
ext/picotcp/rules/dns_client.mk
Normal file
2
ext/picotcp/rules/dns_client.mk
Normal file
@@ -0,0 +1,2 @@
|
||||
OPTIONS+=-DPICO_SUPPORT_DNS_CLIENT
|
||||
MOD_OBJ+=$(LIBBASE)modules/pico_dns_client.o $(LIBBASE)modules/pico_dns_common.o
|
||||
2
ext/picotcp/rules/dns_sd.mk
Normal file
2
ext/picotcp/rules/dns_sd.mk
Normal file
@@ -0,0 +1,2 @@
|
||||
OPTIONS+=-DPICO_SUPPORT_DNS_SD
|
||||
MOD_OBJ+=$(LIBBASE)modules/pico_dns_sd.o $(LIBBASE)modules/pico_mdns.o $(LIBBASE)modules/pico_dns_common.o
|
||||
2
ext/picotcp/rules/eth.mk
Normal file
2
ext/picotcp/rules/eth.mk
Normal file
@@ -0,0 +1,2 @@
|
||||
OPTIONS+=-DPICO_SUPPORT_ETH
|
||||
MOD_OBJ+=$(LIBBASE)modules/pico_arp.o
|
||||
5
ext/picotcp/rules/icmp4.mk
Normal file
5
ext/picotcp/rules/icmp4.mk
Normal file
@@ -0,0 +1,5 @@
|
||||
OPTIONS+=-DPICO_SUPPORT_ICMP4
|
||||
MOD_OBJ+=$(LIBBASE)modules/pico_icmp4.o
|
||||
ifneq ($(PING),0)
|
||||
OPTIONS+=-DPICO_SUPPORT_PING
|
||||
endif
|
||||
3
ext/picotcp/rules/igmp.mk
Normal file
3
ext/picotcp/rules/igmp.mk
Normal file
@@ -0,0 +1,3 @@
|
||||
OPTIONS+=-DPICO_SUPPORT_IGMP
|
||||
MOD_OBJ+=$(LIBBASE)modules/pico_igmp.o
|
||||
|
||||
2
ext/picotcp/rules/ipfilter.mk
Normal file
2
ext/picotcp/rules/ipfilter.mk
Normal file
@@ -0,0 +1,2 @@
|
||||
OPTIONS+=-DPICO_SUPPORT_IPFILTER
|
||||
MOD_OBJ+=$(LIBBASE)modules/pico_ipfilter.o
|
||||
2
ext/picotcp/rules/ipv4.mk
Normal file
2
ext/picotcp/rules/ipv4.mk
Normal file
@@ -0,0 +1,2 @@
|
||||
OPTIONS+=-DPICO_SUPPORT_IPV4
|
||||
MOD_OBJ+=$(LIBBASE)modules/pico_ipv4.o
|
||||
2
ext/picotcp/rules/ipv4frag.mk
Normal file
2
ext/picotcp/rules/ipv4frag.mk
Normal file
@@ -0,0 +1,2 @@
|
||||
OPTIONS+=-DPICO_SUPPORT_IPV4FRAG
|
||||
MOD_OBJ+=$(LIBBASE)modules/pico_fragments.o
|
||||
3
ext/picotcp/rules/ipv6.mk
Normal file
3
ext/picotcp/rules/ipv6.mk
Normal file
@@ -0,0 +1,3 @@
|
||||
OPTIONS+=-DPICO_SUPPORT_IPV6 -DPICO_SUPPORT_ICMP6
|
||||
MOD_OBJ+=$(LIBBASE)modules/pico_ipv6.o $(LIBBASE)modules/pico_ipv6_nd.o $(LIBBASE)modules/pico_icmp6.o
|
||||
include rules/ipv6frag.mk
|
||||
2
ext/picotcp/rules/ipv6frag.mk
Normal file
2
ext/picotcp/rules/ipv6frag.mk
Normal file
@@ -0,0 +1,2 @@
|
||||
OPTIONS+=-DPICO_SUPPORT_IPV6FRAG
|
||||
MOD_OBJ+=$(LIBBASE)modules/pico_fragments.o
|
||||
1
ext/picotcp/rules/mcast.mk
Normal file
1
ext/picotcp/rules/mcast.mk
Normal file
@@ -0,0 +1 @@
|
||||
OPTIONS+=-DPICO_SUPPORT_MCAST
|
||||
2
ext/picotcp/rules/mdns.mk
Normal file
2
ext/picotcp/rules/mdns.mk
Normal file
@@ -0,0 +1,2 @@
|
||||
OPTIONS+=-DPICO_SUPPORT_MDNS
|
||||
MOD_OBJ+=$(LIBBASE)modules/pico_mdns.o $(LIBBASE)modules/pico_dns_common.o
|
||||
2
ext/picotcp/rules/memory_manager.mk
Normal file
2
ext/picotcp/rules/memory_manager.mk
Normal file
@@ -0,0 +1,2 @@
|
||||
OPTIONS+=-DPICO_SUPPORT_MM
|
||||
MOD_OBJ+=$(LIBBASE)modules/pico_mm.o
|
||||
3
ext/picotcp/rules/mld.mk
Normal file
3
ext/picotcp/rules/mld.mk
Normal file
@@ -0,0 +1,3 @@
|
||||
OPTIONS+=-DPICO_SUPPORT_MLD
|
||||
MOD_OBJ+=$(LIBBASE)modules/pico_mld.o
|
||||
|
||||
2
ext/picotcp/rules/nat.mk
Normal file
2
ext/picotcp/rules/nat.mk
Normal file
@@ -0,0 +1,2 @@
|
||||
OPTIONS+=-DPICO_SUPPORT_NAT
|
||||
MOD_OBJ+=$(LIBBASE)modules/pico_nat.o
|
||||
2
ext/picotcp/rules/olsr.mk
Normal file
2
ext/picotcp/rules/olsr.mk
Normal file
@@ -0,0 +1,2 @@
|
||||
OPTIONS+=-DPICO_SUPPORT_OLSR
|
||||
MOD_OBJ+=$(LIBBASE)modules/pico_olsr.o
|
||||
1
ext/picotcp/rules/pcap.mk
Normal file
1
ext/picotcp/rules/pcap.mk
Normal file
@@ -0,0 +1 @@
|
||||
MOD_OBJ+=$(LIBBASE)modules/pico_dev_pcap.o
|
||||
2
ext/picotcp/rules/polarssl.mk
Normal file
2
ext/picotcp/rules/polarssl.mk
Normal file
@@ -0,0 +1,2 @@
|
||||
OPTIONS += -DPICO_SUPPORT_POLARSSL
|
||||
LDFLAGS += -lpolarssl
|
||||
3
ext/picotcp/rules/ppp.mk
Normal file
3
ext/picotcp/rules/ppp.mk
Normal file
@@ -0,0 +1,3 @@
|
||||
OPTIONS+=-DPICO_SUPPORT_PPP
|
||||
MOD_OBJ+=$(LIBBASE)modules/pico_dev_ppp.o
|
||||
|
||||
2
ext/picotcp/rules/slaacv4.mk
Normal file
2
ext/picotcp/rules/slaacv4.mk
Normal file
@@ -0,0 +1,2 @@
|
||||
OPTIONS+=-DPICO_SUPPORT_SLAACV4
|
||||
MOD_OBJ+=$(LIBBASE)modules/pico_slaacv4.o $(LIBBASE)modules/pico_hotplug_detection.o
|
||||
2
ext/picotcp/rules/sntp_client.mk
Normal file
2
ext/picotcp/rules/sntp_client.mk
Normal file
@@ -0,0 +1,2 @@
|
||||
OPTIONS+=-DPICO_SUPPORT_SNTP_CLIENT
|
||||
MOD_OBJ+=$(LIBBASE)modules/pico_sntp_client.o
|
||||
1
ext/picotcp/rules/tap.mk
Normal file
1
ext/picotcp/rules/tap.mk
Normal file
@@ -0,0 +1 @@
|
||||
MOD_OBJ+=$(LIBBASE)modules/pico_dev_tap.o
|
||||
3
ext/picotcp/rules/tcp.mk
Normal file
3
ext/picotcp/rules/tcp.mk
Normal file
@@ -0,0 +1,3 @@
|
||||
OPTIONS+=-DPICO_SUPPORT_TCP
|
||||
MOD_OBJ+=$(LIBBASE)modules/pico_tcp.o
|
||||
MOD_OBJ+=$(LIBBASE)modules/pico_socket_tcp.o
|
||||
1
ext/picotcp/rules/tun.mk
Normal file
1
ext/picotcp/rules/tun.mk
Normal file
@@ -0,0 +1 @@
|
||||
MOD_OBJ+=$(LIBBASE)modules/pico_dev_tun.o
|
||||
3
ext/picotcp/rules/udp.mk
Normal file
3
ext/picotcp/rules/udp.mk
Normal file
@@ -0,0 +1,3 @@
|
||||
OPTIONS+=-DPICO_SUPPORT_UDP
|
||||
MOD_OBJ+=$(LIBBASE)modules/pico_udp.o
|
||||
MOD_OBJ+=$(LIBBASE)modules/pico_socket_udp.o
|
||||
3
ext/picotcp/rules/wolfssl.mk
Normal file
3
ext/picotcp/rules/wolfssl.mk
Normal file
@@ -0,0 +1,3 @@
|
||||
OPTIONS+=-DPICO_SUPPORT_CYASSL -DPICO_SUPPORT_WOLFSSL
|
||||
LDFLAGS+=-lwolfssl
|
||||
|
||||
Reference in New Issue
Block a user