1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-01-17 04:52:59 +01:00

treewide: remove deprecated gnrc_udp_cmd module

Signed-off-by: Dylan Laduranty <dylan.laduranty@mesotic.com>
This commit is contained in:
Dylan Laduranty 2024-03-14 21:54:09 +01:00
parent 1bbb020fe2
commit 5b3b426678
4 changed files with 1 additions and 12 deletions

View File

@ -1,6 +1,5 @@
# Add deprecated modules here
# Keep this list ALPHABETICALLY SORTED!!!!111elven
DEPRECATED_MODULES += gnrc_udp_cmd # use shell_cmd_gnrc_udp instead
DEPRECATED_MODULES += heap_cmd # use shell_cmd_heap instead
DEPRECATED_MODULES += i2c_scan # use shell_cmd_i2c_scan instead
DEPRECATED_MODULES += md5sum # use shell_cmd_md5sum instead

View File

@ -234,13 +234,6 @@ PSEUDOMODULES += gnrc_sixlowpan_frag_sfr_congure_sfr
PSEUDOMODULES += gnrc_sixlowpan_iphc_nhc
PSEUDOMODULES += gnrc_sixlowpan_nd_border_router
PSEUDOMODULES += gnrc_sixlowpan_router_default
## @defgroup net_gnrc_udp_cmd gnrc_udp_cmd
## @ingroup net_gnrc_udp
## @{
## @deprecated Use module `shell_cmd_gnrc_udp` instead;
## will be removed after 2023.07 release.
PSEUDOMODULES += gnrc_udp_cmd
## @}
PSEUDOMODULES += gnrc_sock_async
PSEUDOMODULES += gnrc_sock_check_reuse
PSEUDOMODULES += gnrc_txtsnd

View File

@ -69,9 +69,6 @@ ifneq (,$(filter shell_cmds_default,$(USEMODULE)))
ifneq (,$(filter gnrc_sixlowpan_frag_stats,$(USEMODULE)))
USEMODULE += shell_cmd_gnrc_sixlowpan_frag_stats
endif
ifneq (,$(filter gnrc_udp_cmd,$(USEMODULE)))
USEMODULE += shell_cmd_gnrc_udp
endif
ifneq (,$(filter heap_cmd,$(USEMODULE)))
USEMODULE += shell_cmd_heap
endif

View File

@ -20,6 +20,6 @@ modules, if it exists.
A few rarely needed shell commands that needs to be used in addition to the
`shell_commands` and the module providing the C-API. Examples include `nice`,
`gnrc_udp_cmd`, or `random_cmd`. Consult the documentation of the modules to
`shell_cmd_gnrc_udp`, or `random_cmd`. Consult the documentation of the modules to
find out whether they have a shell integration and how to enable it.
*/