libports: disable call of lwip_loopback_init()

As of lwip-1.4.x this is not needed anymore because lwip
now always creates a loopback device. This plug-in will
be removed in the future but for now keep it around so
we currently do not need to update the other targets that
depend on it.

Fixes #329.
This commit is contained in:
Josef Söntgen 2012-08-15 11:59:01 +02:00 committed by Norman Feske
parent ba5ec3a29e
commit 27a5edaf78
1 changed files with 9 additions and 1 deletions

View File

@ -25,5 +25,13 @@ void __attribute__((constructor)) init_loopback(void)
/* make sure the libc_lwip plugin has been created */
create_lwip_plugin();
lwip_loopback_init();
/**
* As of lwip-1.4.x this is not needed anymore because lwip
* now always creates a loopback device. This plug-in will
* be removed in the future but for now keep it around so
* we currently do not need to update the other targets that
* depend on it.
*
* lwip_loopback_init();
*/
}