Skip to content

Commit

Permalink
sys/shell: removed route command for accessing the RPL internal rou…
Browse files Browse the repository at this point in the history
…ting table
  • Loading branch information
BytesGalore authored and BytesGalore committed Apr 15, 2015
1 parent aca795d commit 298e43e
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 74 deletions.
3 changes: 0 additions & 3 deletions sys/shell/commands/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,6 @@ endif
ifneq (,$(filter ps,$(USEMODULE)))
SRC += sc_ps.c
endif
ifneq (,$(filter rpl,$(USEMODULE)))
SRC += sc_rpl.c
endif
ifneq (,$(filter sht11,$(USEMODULE)))
SRC += sc_sht11.c
endif
Expand Down
2 changes: 0 additions & 2 deletions sys/shell/commands/sc_fib.c
Original file line number Diff line number Diff line change
Expand Up @@ -154,8 +154,6 @@ int _fib_route_handler(int argc, char **argv)
_fib_usage(1);
return 1;
}

return 0;
}

/* e.g. fibroute add <destination> via <next hop> dev <device> lifetime <lifetime> */
Expand Down
62 changes: 0 additions & 62 deletions sys/shell/commands/sc_rpl.c

This file was deleted.

7 changes: 0 additions & 7 deletions sys/shell/commands/shell_commands.c
Original file line number Diff line number Diff line change
Expand Up @@ -133,10 +133,6 @@ extern int _l2_ping_get_probe_handler(int argc, char **argv);
extern int _net_if_ifconfig(int argc, char **argv);
#endif

#ifdef MODULE_RPL
extern int _rpl_route_handler(int argc, char **argv);
#endif

#ifdef MODULE_MCI
extern int _get_sectorsize(int argc, char **argv);
extern int _get_blocksize(int argc, char **argv);
Expand Down Expand Up @@ -240,9 +236,6 @@ const shell_command_t _shell_command_list[] = {
#ifdef MODULE_NET_IF
{"ifconfig", "Configures a network interface", _net_if_ifconfig},
#endif
#ifdef MODULE_RPL
{"route", "Shows the routing table", _rpl_route_handler},
#endif
#ifdef MODULE_MCI
{DISK_READ_SECTOR_CMD, "Reads the specified sector of inserted memory card", _read_sector},
{DISK_READ_BYTES_CMD, "Reads the specified bytes from inserted memory card", _read_bytes},
Expand Down

0 comments on commit 298e43e

Please sign in to comment.