mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
treewide: remove deprecated gnrc_pktbuf_cmd module
Signed-off-by: Dylan Laduranty <dylan.laduranty@mesotic.com>
This commit is contained in:
parent
6796b93fc9
commit
67b8c6709c
@ -1,7 +1,6 @@
|
||||
# Add deprecated modules here
|
||||
# Keep this list ALPHABETICALLY SORTED!!!!111elven
|
||||
DEPRECATED_MODULES += gnrc_netif_cmd_lora # use shell_cmd_gnrc_netif_lorawan instead
|
||||
DEPRECATED_MODULES += gnrc_pktbuf_cmd # use shell_cmd_gnrc_pktbuf instead
|
||||
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
|
||||
|
@ -114,13 +114,6 @@ PSEUDOMODULES += gnrc_netapi_callbacks
|
||||
PSEUDOMODULES += gnrc_netapi_mbox
|
||||
PSEUDOMODULES += gnrc_netif_bus
|
||||
PSEUDOMODULES += gnrc_netif_timestamp
|
||||
## @defgroup net_gnrc_pktbuf_cmd gnrc_pktbuf_cmd
|
||||
## @ingroup net_gnrc_pktbuf
|
||||
## @{
|
||||
## @deprecated Use module `shell_cmd_gnrc_pktbuf` instead;
|
||||
## will be removed after 2023.07 release.
|
||||
PSEUDOMODULES += gnrc_pktbuf_cmd
|
||||
## @}
|
||||
PSEUDOMODULES += gnrc_netif_6lo
|
||||
PSEUDOMODULES += gnrc_netif_ipv6
|
||||
PSEUDOMODULES += gnrc_netif_mac
|
||||
|
@ -1,5 +1,5 @@
|
||||
# Check that only one implementation of pktbuf is used
|
||||
USED_PKTBUF_IMPLEMENTATIONS := $(filter-out gnrc_pktbuf_cmd,$(filter gnrc_pktbuf_%,$(USEMODULE)))
|
||||
USED_PKTBUF_IMPLEMENTATIONS := $(filter gnrc_pktbuf_%,$(USEMODULE))
|
||||
ifneq (1,$(words $(USED_PKTBUF_IMPLEMENTATIONS)))
|
||||
$(error Only one implementation of gnrc_pktbuf should be used. Currently using: $(USED_PKTBUF_IMPLEMENTATIONS))
|
||||
endif
|
||||
|
@ -60,9 +60,6 @@ ifneq (,$(filter shell_cmds_default,$(USEMODULE)))
|
||||
ifneq (,$(filter gnrc_netif_lorawan,$(USEMODULE)))
|
||||
USEMODULE += shell_cmd_gnrc_netif_lorawan
|
||||
endif
|
||||
ifneq (,$(filter gnrc_pktbuf_cmd,$(USEMODULE)))
|
||||
USEMODULE += shell_cmd_gnrc_pktbuf
|
||||
endif
|
||||
ifneq (,$(filter gnrc_rpl,$(USEMODULE)))
|
||||
USEMODULE += shell_cmd_gnrc_rpl
|
||||
endif
|
||||
|
Loading…
Reference in New Issue
Block a user