1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-01-17 05:12:57 +01:00

treewide: remove deprecated sha1sum module

Signed-off-by: Dylan Laduranty <dylan.laduranty@mesotic.com>
This commit is contained in:
Dylan Laduranty 2024-03-14 22:09:56 +01:00
parent b246f63aff
commit 035c965cb9
3 changed files with 1 additions and 13 deletions

View File

@ -1,7 +1,6 @@
# Add deprecated modules here
# Keep this list ALPHABETICALLY SORTED!!!!111elven
DEPRECATED_MODULES += sema_deprecated
DEPRECATED_MODULES += sha1sum # use shell_cmd_sha1sum instead
DEPRECATED_MODULES += sha256sum # use shell_cmd_sha256sum instead
DEPRECATED_MODULES += shell_commands # use shell_cmds_default instead
DEPRECATED_MODULES += ztimer_now64

View File

@ -380,13 +380,6 @@ PSEUDOMODULES += servo_timer
## @{
PSEUDOMODULES += servo_saul
## @}
## @defgroup pseudomodule_sha1sum sha1sum
## @ingroup sys_shell_commands
## @{
## @deprecated Use module `shell_cmd_sha1sum` instead;
## will be removed after 2023.07 release.
PSEUDOMODULES += sha1sum
## @}
## @defgroup pseudomodule_sha256sum sha256sum
## @ingroup sys_shell_commands
## @{

View File

@ -259,10 +259,6 @@ ifneq (,$(filter posix_sockets,$(USEMODULE)))
USEMODULE += posix_headers
endif
ifneq (,$(filter sha1sum,$(USEMODULE)))
USEMODULE += shell_cmd_sha1sum
endif
ifneq (,$(filter sha256sum,$(USEMODULE)))
USEMODULE += shell_cmd_sha256sum
endif
@ -290,7 +286,7 @@ ifneq (,$(filter isrpipe_read_timeout,$(USEMODULE)))
USEMODULE += ztimer_usec
endif
ifneq (,$(filter sha1sum sha256sum,$(USEMODULE)))
ifneq (,$(filter sha256sum,$(USEMODULE)))
USEMODULE += vfs_util
USEMODULE += hashes
endif