1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-06-28 19:00:46 +03:00
openwrt-xburst/scripts/update-package-md5sum
lars 6d15a5170a [scripts] update-package-md5sum: A tool to update the md5sum of openwrt packages.
Useful when upgrading a set of packages.


git-svn-id: svn://svn.openwrt.org/openwrt/trunk@19019 3c298f89-4303-0410-b956-a3cf2f4a3e73
2010-01-03 17:06:06 +00:00

39 lines
1.2 KiB
Bash
Executable File

#!/usr/bin/env sh
#
# update-package-md5sum - Updates md5sum of OpenWrt packages
#
# update-package-md5sum will update the md5sum for all recusivly found OpenWrt packages
# in a given directory.
#
# Usage: scripts/update-package-md5sum <package directory>
#
# Example: `scripts/update-package-md5sum feeds/packages/python`
DL_FOLDER=`grep -Eo '^CONFIG_DOWNLOAD_FOLDER=".*"$' .config | \
sed 's,^CONFIG_DOWNLOAD_FOLDER="\(.*\)"$,\1,'`
if test -z ${DL_FOLDER}; then
DL_FOLDER=./dl
fi
if test -z "$1"; then
echo "Usage: $0 <package directory>"
exit
fi
for file in `find $1 -name Makefile`; do
if grep BuildPackage ${file} > /dev/null; then
source=`DUMP=1 TOPDIR=\`pwd\` make -f ${file} | grep -m 1 Source | cut -f 2 -d ' '`
if test -n "${source}"; then
if test ! -f "${DL_FOLDER}/${source}"; then
make package/`basename \`dirname ${file}\``/download
fi
sum=`md5sum ${DL_FOLDER}/${source} 2> /dev/null` || continue
echo Updating ${file}...
sum=`echo ${sum} | cut -d ' ' -f 1`
sed -i "s,^PKG_MD5SUM:=.*,PKG_MD5SUM:=${sum}," ${file}
else
echo No source for ${file}
fi
fi
done