diff options
author | Steven Barth <cyrus@openwrt.org> | 2013-10-04 05:56:20 +0000 |
---|---|---|
committer | Steven Barth <cyrus@openwrt.org> | 2013-10-04 05:56:20 +0000 |
commit | 8b7b7cabf211e75b81f5cab3b1024342ec1c962c (patch) | |
tree | 70f0a8d5a04928885c27b89e28fd40ba3e01c8f9 /scripts/ipkg-make-index.sh | |
parent | fa3ab0c237b76eed2a7ee5f56d47802adfdc5c3a (diff) | |
download | upstream-8b7b7cabf211e75b81f5cab3b1024342ec1c962c.tar.gz upstream-8b7b7cabf211e75b81f5cab3b1024342ec1c962c.tar.bz2 upstream-8b7b7cabf211e75b81f5cab3b1024342ec1c962c.zip |
opkg: add support for SHA256 verification
based on a patch by Evan Hunt <each@isc.org>
Signed-off-by: Steven Barth <steven@midlink.org>
SVN-Revision: 38302
Diffstat (limited to 'scripts/ipkg-make-index.sh')
-rwxr-xr-x | scripts/ipkg-make-index.sh | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/scripts/ipkg-make-index.sh b/scripts/ipkg-make-index.sh index cbfa450c0a..a2f3deae17 100755 --- a/scripts/ipkg-make-index.sh +++ b/scripts/ipkg-make-index.sh @@ -18,11 +18,13 @@ for pkg in `find $pkg_dir -name '*.ipk' | sort`; do echo "Generating index for package $pkg" >&2 file_size=$(ls -l $pkg | awk '{print $5}') md5sum=$(md5sum $pkg | awk '{print $1}') + sha256sum=$(openssl sha256 $pkg | awk '{print $2}') # Take pains to make variable value sed-safe sed_safe_pkg=`echo $pkg | sed -e 's/^\.\///g' -e 's/\\//\\\\\\//g'` tar -xzOf $pkg ./control.tar.gz | tar xzOf - ./control | sed -e "s/^Description:/Filename: $sed_safe_pkg\\ Size: $file_size\\ MD5Sum: $md5sum\\ +SHA256sum: $sha256sum\\ Description:/" echo "" done |