1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-12-27 23:41:18 +01:00

treewide: remove deprecated nice module

Signed-off-by: Dylan Laduranty <dylan.laduranty@mesotic.com>
This commit is contained in:
Dylan Laduranty 2024-03-14 22:04:42 +01:00
parent dac4d460b4
commit 26058cf14e
5 changed files with 5 additions and 15 deletions

View File

@ -1,6 +1,5 @@
# Add deprecated modules here
# Keep this list ALPHABETICALLY SORTED!!!!111elven
DEPRECATED_MODULES += nice # use shell_cmd_nice instead
DEPRECATED_MODULES += random_cmd # use shell_cmd_random instead
DEPRECATED_MODULES += sema_deprecated
DEPRECATED_MODULES += sha1sum # use shell_cmd_sha1sum instead

View File

@ -322,13 +322,6 @@ PSEUDOMODULES += nrfx
PSEUDOMODULES += newlib
PSEUDOMODULES += newlib_gnu_source
PSEUDOMODULES += newlib_nano
## @defgroup pseudomodule_nice nice
## @ingroup sys_shell_commands
## @{
## @deprecated Use module `shell_cmd_nice` instead;
## will be removed after 2023.07 release.
PSEUDOMODULES += nice
## @}
PSEUDOMODULES += nrf24l01p_ng_diagnostics
PSEUDOMODULES += opendsme
PSEUDOMODULES += openthread

View File

@ -84,9 +84,6 @@ ifneq (,$(filter shell_cmds_default,$(USEMODULE)))
ifneq (,$(filter netstats_neighbor,$(USEMODULE)))
USEMODULE += shell_cmd_netstats_neighbor
endif
ifneq (,$(filter nice,$(USEMODULE)))
USEMODULE += shell_cmd_nice
endif
ifneq (,$(filter nimble_netif,$(USEMODULE)))
USEMODULE += shell_cmd_nimble_netif
endif

View File

@ -19,7 +19,8 @@ Using the module `shell_commands` will enable the shell integration of the used
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`,
`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.
`shell_commands` and the module providing the C-API. Examples include
`shell_cmd_nice`, `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.
*/

View File

@ -1,6 +1,6 @@
include ../Makefile.core_common
USEMODULE += nice
USEMODULE += shell_cmd_nice
USEMODULE += ps
USEMODULE += shell_cmds_default