Skip to content
Snippets Groups Projects
Commit bea79d7d authored by Andre Przywara's avatar Andre Przywara Committed by Tom Rini
Browse files

Kconfig: introduce md5sum command selection


So far CONFIG_MD5SUM would need to be set by a board's include file.
Since the command is really generic, move it over to Kconfig to allow
it to be defined by either a board's defconfig, menuconfig or some
config snippet merged via mergeconfig.sh.

Signed-off-by: default avatarAndre Przywara <andre.przywara@arm.com>
Reviewed-by: default avatarSimon Glass <sjg@chromium.org>
parent a5b3b2d9
No related branches found
No related tags found
No related merge requests found
......@@ -338,6 +338,20 @@ config CMD_CRC32
help
Compute CRC32.
config CMD_MD5SUM
bool "md5sum"
default n
select MD5
help
Compute MD5 checksum.
config MD5SUM_VERFIY
bool "md5sum -v"
default n
depends on CMD_MD5SUM
help
Add -v option to verify data against an MD5 checksum.
config LOOPW
bool "loopw"
help
......
......@@ -101,6 +101,10 @@ config SHA_PROG_HW_ACCEL
SHA1/SHA256 progressive hashing.
Data can be streamed in a block at a time and the hashing
is performed in hardware.
config MD5
bool
endmenu
menu "Compression Support"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment