Skip to content

Commit

Permalink
board/common: switch to md5sum for images
Browse files Browse the repository at this point in the history
A cut-and-paste error caused the use of sha1sum to be named .md5.
To avoid any more confusion, let's standardize on md5sum instead,
at least for now.

Signed-off-by: Joachim Wiberg <troglobit@gmail.com>
  • Loading branch information
troglobit committed Sep 1, 2021
1 parent 995100a commit 9dad8df
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion board/common/post-image.sh
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,6 @@ dir=$(dirname "$img")
md5=$dir/$(basename "$img" .img).md5

mv "$BINARIES_DIR"/rootfs.squashfs "$img"
sha1sum "$img" > "$md5"
md5sum "$img" > "$md5"

exit $err

0 comments on commit 9dad8df

Please sign in to comment.