poky/scripts/bitbake-prserv-tool
Lianhao Lu c3a23ec304 scripts/prserv-tool: Adepted to new bitbake cache.
Adepted to the new bitbake cache mechanism which is based on file
content but not on file timp stamps any more.

(From OE-Core rev: c1705317f9456f761da2094e886a07939291e53a)

Signed-off-by: Lianhao Lu <lianhao.lu@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2012-02-28 12:27:23 +00:00

1.3 KiB
Executable File

#!/usr/bin/env bash

help () { base=basename $0 echo -e "Usage: $base command" echo "Avaliable commands:" echo -e "\texport : export and lock down the AUTOPR values from the PR service into a file for release." echo -e "\timport : import the AUTOPR values from the exported file into the PR service." }

clean_cache() { s=bitbake -e | grep ^CACHE= | cut -f2 -d\" if [ "x${s}" != "x" ]; then rm -rf ${s} fi }

do_export () { file=$1 [ "x${file}" == "x" ] && help && exit 1 rm -f ${file}

clean_cache
bitbake -R conf/prexport.conf -p
s=`bitbake -R conf/prexport.conf -e | grep ^PRSERV_DUMPFILE= | cut -f2 -d\"`
if [ "x${s}" != "x" ];
then
   [ -e $s ] && mv -f $s $file && echo "Exporting to file $file succeeded!"
   return 0
fi
echo "Exporting to file $file failed!"
return 1

}

do_import () { file=$1 [ "x${file}" == "x" ] && help && exit 1

clean_cache
bitbake -R conf/primport.conf -R $file -p
ret=$?
[ $ret -eq 0 ] && echo "Importing from file $file succeeded!" || echo "Importing from file $file failed!"
return $ret

}

[ $# -eq 0 ] && help && exit 1

case $1 in export) do_export $2 ;; import) do_import $2 ;; *) help exit 1 ;; esac