1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

treewide: remove deprecated md5sum module

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

View File

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

View File

@ -286,13 +286,6 @@ PSEUDOMODULES += mpu_noexec_ram
PSEUDOMODULES += pmp_noexec_ram
## @}
## @defgroup pseudomodule_md5sum md5sum
## @ingroup sys_shell_commands
## @{
## @deprecated Use module `shell_cmd_md5sum` instead;
## will be removed after 2023.07 release.
PSEUDOMODULES += md5sum
## @}
PSEUDOMODULES += mtd_write_page
PSEUDOMODULES += nanocoap_%
PSEUDOMODULES += nanocoap_fileserver_callback

View File

@ -259,10 +259,6 @@ ifneq (,$(filter posix_sockets,$(USEMODULE)))
USEMODULE += posix_headers
endif
ifneq (,$(filter md5sum ,$(USEMODULE)))
USEMODULE += shell_cmd_md5sum
endif
ifneq (,$(filter sha1sum,$(USEMODULE)))
USEMODULE += shell_cmd_sha1sum
endif
@ -298,7 +294,7 @@ ifneq (,$(filter isrpipe_read_timeout,$(USEMODULE)))
USEMODULE += ztimer_usec
endif
ifneq (,$(filter md5sum sha1sum sha256sum,$(USEMODULE)))
ifneq (,$(filter sha1sum sha256sum,$(USEMODULE)))
USEMODULE += vfs_util
USEMODULE += hashes
endif