mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
treewide: remove deprecated module shell_commands
Replaces it by shell_cmds_default where needed Signed-off-by: Dylan Laduranty <dylan.laduranty@mesotic.com>
This commit is contained in:
parent
c5710392b2
commit
dcc732ac36
@ -1,5 +1,4 @@
|
|||||||
# Add deprecated modules here
|
# Add deprecated modules here
|
||||||
# Keep this list ALPHABETICALLY SORTED!!!!111elven
|
# Keep this list ALPHABETICALLY SORTED!!!!111elven
|
||||||
DEPRECATED_MODULES += sema_deprecated
|
DEPRECATED_MODULES += sema_deprecated
|
||||||
DEPRECATED_MODULES += shell_commands # use shell_cmds_default instead
|
|
||||||
DEPRECATED_MODULES += ztimer_now64
|
DEPRECATED_MODULES += ztimer_now64
|
||||||
|
@ -435,12 +435,6 @@ PSEUDOMODULES += shell_cmd_sys
|
|||||||
PSEUDOMODULES += shell_cmd_udptty
|
PSEUDOMODULES += shell_cmd_udptty
|
||||||
PSEUDOMODULES += shell_cmd_vfs
|
PSEUDOMODULES += shell_cmd_vfs
|
||||||
PSEUDOMODULES += shell_cmds_default
|
PSEUDOMODULES += shell_cmds_default
|
||||||
## @addtogroup sys_shell_commands
|
|
||||||
## @{
|
|
||||||
## @deprecated Use module `shell_cmds_default` instead;
|
|
||||||
## will be removed after 2023.07 release.
|
|
||||||
PSEUDOMODULES += shell_commands
|
|
||||||
## @}
|
|
||||||
PSEUDOMODULES += shell_hooks
|
PSEUDOMODULES += shell_hooks
|
||||||
PSEUDOMODULES += shell_lock_auto_locking
|
PSEUDOMODULES += shell_lock_auto_locking
|
||||||
PSEUDOMODULES += shield_w5100
|
PSEUDOMODULES += shield_w5100
|
||||||
|
@ -70,7 +70,7 @@ endif
|
|||||||
ifneq (,$(filter nimble_autoadv,$(USEMODULE)))
|
ifneq (,$(filter nimble_autoadv,$(USEMODULE)))
|
||||||
USEMODULE += bluetil_ad
|
USEMODULE += bluetil_ad
|
||||||
USEMODULE += bluetil_addr
|
USEMODULE += bluetil_addr
|
||||||
ifneq (,$(filter shell_commands,$(USEMODULE)))
|
ifneq (,$(filter shell_cmds_default,$(USEMODULE)))
|
||||||
DEFAULT_MODULE += nimble_autoadv_shell
|
DEFAULT_MODULE += nimble_autoadv_shell
|
||||||
endif
|
endif
|
||||||
endif
|
endif
|
||||||
|
@ -112,7 +112,7 @@ ifneq (,$(filter openwsn_sock_async,$(USEMODULE)))
|
|||||||
USEMODULE += sock_async
|
USEMODULE += sock_async
|
||||||
endif
|
endif
|
||||||
|
|
||||||
ifneq (,$(filter shell_commands,$(USEMODULE)))
|
ifneq (,$(filter shell_cmds_default,$(USEMODULE)))
|
||||||
USEMODULE += l2util
|
USEMODULE += l2util
|
||||||
endif
|
endif
|
||||||
# This port currently requires setting ISR_STACKSIZE
|
# This port currently requires setting ISR_STACKSIZE
|
||||||
|
@ -259,12 +259,6 @@ ifneq (,$(filter posix_sockets,$(USEMODULE)))
|
|||||||
USEMODULE += posix_headers
|
USEMODULE += posix_headers
|
||||||
endif
|
endif
|
||||||
|
|
||||||
ifneq (,$(filter shell_commands,$(USEMODULE)))
|
|
||||||
# shell_commands has been renamed to shell_cmds_default, but let's keep this
|
|
||||||
# for backward compatibility
|
|
||||||
USEMODULE += shell_cmds_default
|
|
||||||
endif
|
|
||||||
|
|
||||||
ifneq (,$(filter shell_cmd%,$(USEMODULE)))
|
ifneq (,$(filter shell_cmd%,$(USEMODULE)))
|
||||||
# each and every command is a submodule of shell_cmds
|
# each and every command is a submodule of shell_cmds
|
||||||
USEMODULE += shell_cmds
|
USEMODULE += shell_cmds
|
||||||
|
Loading…
Reference in New Issue
Block a user