]> code.ossystems Code Review - openembedded-core.git/commitdiff
sstate: replace verbose manifest removal with a single count
authorRoss Burton <ross.burton@intel.com>
Mon, 18 Jan 2016 16:22:01 +0000 (16:22 +0000)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Tue, 19 Jan 2016 17:37:24 +0000 (17:37 +0000)
If there are lots of changes between the previous build and the build about to
start bitbake will potentially print pages of:

  DEBUG: Stamp $BUILD/stamps/corei7-64-poky-linux/libdrm/2.4.66-r0 is not reachable, removing related manifests

Instead of spamming the console with this list, write the list of manifests only
to the debug log and simply write a count to the console.  This way the user
doesn't get spammed but still knows what is happening if bitbake appears to
stall with heavy I/O.

Signed-off-by: Ross Burton <ross.burton@intel.com>
meta/classes/sstate.bbclass

index 804629199ff1322cab6fed102bdc6b49e0c11047..40b51fe4fe818fcbbe4de2ff99d836a83e2f6845 100644 (file)
@@ -956,8 +956,12 @@ python sstate_eventhandler2() {
                 if stamp not in stamps:
                     toremove.append(l)
                     if stamp not in seen:
-                        bb.note("Stamp %s is not reachable, removing related manifests" % stamp)
+                        bb.debug(2, "Stamp %s is not reachable, removing related manifests" % stamp)
                         seen.append(stamp)
+
+        if toremove:
+            bb.note("There are %d recipes to be removed from the sysroot, removing..." % (len(toremove)))
+
         for r in toremove:
             (stamp, manifest, workdir) = r.split()
             for m in glob.glob(manifest + ".*"):