Makefile.dep: add auto_init_lwip MODULE

This commit is contained in:
Francisco Molina 2020-01-16 09:25:51 +01:00
parent 802216ce53
commit afc43bf314
No known key found for this signature in database
GPG Key ID: 3E94EAC3DBDEEDA8
2 changed files with 3 additions and 1 deletions

View File

@ -1,3 +1,5 @@
# lwIP's memory management doesn't seem to work on non 32-bit platforms at the
# moment.
FEATURES_REQUIRED += arch_32bit
DEFAULT_MODULE += auto_init_lwip

View File

@ -154,7 +154,7 @@ void auto_init(void)
DEBUG("Auto init TCP module\n");
gnrc_tcp_init();
#endif
#ifdef MODULE_LWIP
#ifdef MODULE_AUTO_INIT_LWIP
DEBUG("Bootstraping lwIP.\n");
lwip_bootstrap();
#endif