brcm2708: add kmod-hwmon-rpi-poe-fan
[openwrt/staging/chunkeey.git] / scripts / ipkg-make-index.sh
index a398559bd8c7da3423b16cde4e26aeeeb99b7b58..dcd11ca191adc36d92d6790cb1a1e61a5be36dce 100755 (executable)
@@ -8,23 +8,24 @@ if [ -z $pkg_dir ] || [ ! -d $pkg_dir ]; then
        exit 1
 fi
 
-which md5sum >/dev/null 2>&1 || alias md5sum=md5
+empty=1
 
 for pkg in `find $pkg_dir -name '*.ipk' | sort`; do
+       empty=
        name="${pkg##*/}"
        name="${name%%_*}"
        [[ "$name" = "kernel" ]] && continue
        [[ "$name" = "libc" ]] && continue
        echo "Generating index for package $pkg" >&2
        file_size=$(ls -l $pkg | awk '{print $5}')
-       md5sum=$(md5sum $pkg | awk '{print $1}')
-       sha256sum=$(openssl dgst -sha256 $pkg | awk '{print $2}')
+       sha256sum=$(mkhash sha256 $pkg)
        # 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
+[ -n "$empty" ] && echo
+exit 0