[oe-commits] [bitbake] 01/08: cookerdata: fix variable history not showing in bitbake -e with memres

git at git.openembedded.org git at git.openembedded.org
Fri Jun 9 16:28:32 UTC 2017


This is an automated email from the git hooks/post-receive script.

rpurdie pushed a commit to branch master
in repository bitbake.

commit 57d4977555cf892b15dd0302dfe261fe37d49327
Author: Paul Eggleton <paul.eggleton at linux.intel.com>
AuthorDate: Fri Jun 9 15:34:43 2017 +0200

    cookerdata: fix variable history not showing in bitbake -e with memres
    
    CookerConfiguration sets the "tracking" option to True when -e is
    specified in order to have history tracking enabled in the datastore
    so that we can show variable history (which isn't enabled by default for
    performance reasons), however in memory resident mode this wasn't doing
    anything because it was happening on the UI side only. We do have a
    mechanism for updating the cooker configuration in the server, but the
    tracking option wasn't being included in the list of options we updated,
    so we just need to add this option to fix the issue.
    
    Fixes [YOCTO #10730].
    
    Signed-off-by: Paul Eggleton <paul.eggleton at linux.intel.com>
    Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>
---
 lib/bb/cookerdata.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/bb/cookerdata.py b/lib/bb/cookerdata.py
index aa96f54..524a2cd 100644
--- a/lib/bb/cookerdata.py
+++ b/lib/bb/cookerdata.py
@@ -76,7 +76,7 @@ class ConfigParameters(object):
         for o in ["abort", "tryaltconfigs", "force", "invalidate_stamp", 
                   "verbose", "debug", "dry_run", "dump_signatures", 
                   "debug_domains", "extra_assume_provided", "profile",
-                  "prefile", "postfile"]:
+                  "prefile", "postfile", "tracking"]:
             options[o] = getattr(self.options, o)
 
         ret, error = server.runCommand(["updateConfig", options, environment])

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Openembedded-commits mailing list