Lines Matching +full:lock +full:- +full:pr
5 # SPDX-License-Identifier: GPL-2.0-only
11 echo -e "Usage: $base command"
13 …echo -e "\texport <file.conf>: export and lock down the AUTOPR values from the PR service into a f…
14 …echo -e "\timport <file.conf>: import the AUTOPR values from the exported file into the PR service…
19 s=`bitbake -e | grep ^CACHE= | cut -f2 -d\"`
21 bitbake -m
24 rm -f ${s}/bb_cache*.dat.*
32 rm -f ${file}
35 bitbake -R conf/prexport.conf -p
36 s=`bitbake -R conf/prexport.conf -e | grep ^PRSERV_DUMPFILE= | cut -f2 -d\"`
39 [ -e $s ] && mv -f $s $file && echo "Exporting to file $file succeeded!"
52 bitbake -R conf/primport.conf -R $file -p
54 …[ $ret -eq 0 ] && echo "Importing from file $file succeeded!" || echo "Importing from file $file f…
58 [ $# -eq 0 ] && help && exit 1