Skip to content

Commit f502b03

Browse files
committed
HACK - use gnrc ifconfig for lwip
1 parent e22fe42 commit f502b03

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

sys/shell/commands/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ ifneq (,$(filter openwsn,$(USEPKG)))
103103
endif
104104

105105
ifneq (,$(filter lwip_netif,$(USEMODULE)))
106-
SRC += sc_lwip_netif.c
106+
SRC += sc_gnrc_netif.c
107107
endif
108108

109109
ifneq (,$(filter periph_rtc,$(USEMODULE)))

sys/shell/commands/shell_commands.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ extern int _openwsn_handler(int argc, char **argv);
112112
#endif
113113

114114
#ifdef MODULE_LWIP_NETIF
115-
extern int _lwip_netif_config(int argc, char **argv);
115+
extern int _gnrc_netif_config(int argc, char **argv);
116116
#endif
117117

118118
#ifdef MODULE_FIB
@@ -288,7 +288,7 @@ const shell_command_t _shell_command_list[] = {
288288
{"openwsn", "OpenWSN commands", _openwsn_handler},
289289
#endif
290290
#ifdef MODULE_LWIP_NETIF
291-
{"ifconfig", "List network interfaces", _lwip_netif_config},
291+
{"ifconfig", "Configure network interfaces", _gnrc_netif_config},
292292
#endif
293293
#ifdef MODULE_FIB
294294
{"fibroute", "Manipulate the FIB (info: 'fibroute [add|del]')", _fib_route_handler},

0 commit comments

Comments
 (0)