diff options
author | Martin Jansa <martin.jansa@gmail.com> | 2014-03-29 11:34:10 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-03-30 10:10:35 +0100 |
commit | 42b12dc544b3344067b87f7b8ec2391f21e30022 (patch) | |
tree | 6bdb1e0892b62442e9873fa23f57f29fd1157bc8 | |
parent | ba65fe654a66102e84582886cb0cc19889f5d3dd (diff) | |
download | poky-42b12dc544b3344067b87f7b8ec2391f21e30022.tar.gz |
sstate-cache-management: rm_by_stamps - include signatures of .sigdata. files
* there are .siginfo files in sstate-cache, but STAMPS_DIR calls them
.sigdata, make sure that such signatures are kept, because some tasks
like do_package, don't have _setscene or main task entry and are
removed:
stamps:
tmp-eglibc/stamps/i586-oe-linux/busybox/1.22.1-r0.do_package.sigdata.cd6f625471ef1b20a9379e90519db6f1
tmp-eglibc/stamps/i586-oe-linux/busybox/1.22.1-r0.do_package_write_ipk.f20fe66285219f23373fc64d5de1d412
tmp-eglibc/stamps/i586-oe-linux/busybox/1.22.1-r0.do_package_write_ipk.sigdata.f20fe66285219f23373fc64d5de1d412
tmp-eglibc/stamps/i586-oe-linux/busybox/1.22.1-r0.do_packagedata.sigdata.c55a3dbe90010c15aa3294753fbd402e
tmp-eglibc/stamps/i586-oe-linux/busybox/1.22.1-r0.do_packagedata_setscene.c55a3dbe90010c15aa3294753fbd402e.qemux86
sstate (we want to keep all in this case):
sstate-cache/c5/sstate:busybox:i586-oe-linux:1.22.1:r0:i586:3:c55a3dbe90010c15aa3294753fbd402e_packagedata.tgz
sstate-cache/c5/sstate:busybox:i586-oe-linux:1.22.1:r0:i586:3:c55a3dbe90010c15aa3294753fbd402e_packagedata.tgz.siginfo
sstate-cache/cd/sstate:busybox:i586-oe-linux:1.22.1:r0:i586:3:cd6f625471ef1b20a9379e90519db6f1_package.tgz
sstate-cache/cd/sstate:busybox:i586-oe-linux:1.22.1:r0:i586:3:cd6f625471ef1b20a9379e90519db6f1_package.tgz.siginfo
sstate-cache/f2/sstate:busybox:i586-oe-linux:1.22.1:r0:i586:3:f20fe66285219f23373fc64d5de1d412_package_write_ipk.tgz
sstate-cache/f2/sstate:busybox:i586-oe-linux:1.22.1:r0:i586:3:f20fe66285219f23373fc64d5de1d412_package_write_ipk.tgz.siginfo
(From OE-Core rev: c2e5c0b6bdc432449ad1792176aa28667c3d34b9)
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rwxr-xr-x | scripts/sstate-cache-management.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/sstate-cache-management.sh b/scripts/sstate-cache-management.sh index d741ec93f2..34bde01970 100755 --- a/scripts/sstate-cache-management.sh +++ b/scripts/sstate-cache-management.sh | |||
@@ -330,11 +330,11 @@ rm_by_stamps (){ | |||
330 | # Figure out all the md5sums in the stamps dir. | 330 | # Figure out all the md5sums in the stamps dir. |
331 | echo "Figuring out all the md5sums in stamps dir ... " | 331 | echo "Figuring out all the md5sums in stamps dir ... " |
332 | for i in $suffixes; do | 332 | for i in $suffixes; do |
333 | # There is no "\.siginfo" but "_setcene" when it is mirrored | 333 | # There is no "\.sigdata" but "_setcene" when it is mirrored |
334 | # from the SSTATE_MIRRORS, use them to figure out the sum. | 334 | # from the SSTATE_MIRRORS, use them to figure out the sum. |
335 | sums=`find $stamps -maxdepth 3 -name "*.do_$i.*" \ | 335 | sums=`find $stamps -maxdepth 3 -name "*.do_$i.*" \ |
336 | -o -name "*.do_${i}_setscene.*" | \ | 336 | -o -name "*.do_${i}_setscene.*" | \ |
337 | sed -ne 's#.*_setscene\.##p' -e 's#.*\.siginfo\.##p' | \ | 337 | sed -ne 's#.*_setscene\.##p' -e 's#.*\.sigdata\.##p' | \ |
338 | sed -e 's#\..*##' | sort -u` | 338 | sed -e 's#\..*##' | sort -u` |
339 | all_sums="$all_sums $sums" | 339 | all_sums="$all_sums $sums" |
340 | done | 340 | done |