diff options
author | Linus Groh <mail@linusgroh.de> | 2020-09-12 19:37:12 +0100 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2020-09-13 11:37:56 +0200 |
commit | e9562e1920bea15ce4bf7cc08006c4515a2fedc0 (patch) | |
tree | 071d98430274dcd3ea15d0d710c63ee75c6b6966 /Meta | |
parent | a6734766ecf849d3a06ba321a8fac6c23a8d3435 (diff) | |
download | serenity-e9562e1920bea15ce4bf7cc08006c4515a2fedc0.zip |
Userland: Add {md5,sha1,sha256,sha512}sum
Diffstat (limited to 'Meta')
-rwxr-xr-x | Meta/build-root-filesystem.sh | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Meta/build-root-filesystem.sh b/Meta/build-root-filesystem.sh index 475df54f45..47517a5c3d 100755 --- a/Meta/build-root-filesystem.sh +++ b/Meta/build-root-filesystem.sh @@ -151,6 +151,13 @@ ln -s Shell mnt/bin/sh ln -s test mnt/bin/[ echo "done" +printf "installing 'checksum' variants... " +ln -s checksum mnt/bin/md5sum +ln -s checksum mnt/bin/sha1sum +ln -s checksum mnt/bin/sha256sum +ln -s checksum mnt/bin/sha512sum +echo "done" + # Run local sync script, if it exists if [ -f sync-local.sh ]; then sh sync-local.sh |