[oe-commits] [bitbake] 13/17: command: make setEventMask readonly

git at git.openembedded.org git at git.openembedded.org
Mon Mar 7 17:24:05 UTC 2016


rpurdie pushed a commit to branch master
in repository bitbake.

commit 8a47d30b2555255fbf6049c5ed69b29664c32b17
Author: Ed Bartosh <ed.bartosh at linux.intel.com>
AuthorDate: Wed Mar 2 22:47:40 2016 -0800

    command: make setEventMask readonly
    
    Executing setEventMask command when bitbake server is in readonly
    mode causes runCommand to fail with the following error:
     'Not able to execute not readonly commands in readonly mode'
    
    Set readonly attribute for setEventMask command to make it working
    for Toaster UI. This should not do any harm as this command doesn't
    influence cooker state.
    
    Signed-off-by: Ed Bartosh <ed.bartosh at linux.intel.com>
    Signed-off-by: brian avery <avery.brian at gmail.com>
    Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>
---
 lib/bb/command.py | 1 +
 1 file changed, 1 insertion(+)

diff --git a/lib/bb/command.py b/lib/bb/command.py
index 74106d1..0559ffc 100644
--- a/lib/bb/command.py
+++ b/lib/bb/command.py
@@ -279,6 +279,7 @@ class CommandsSync:
         mask = params[3]
         return bb.event.set_UIHmask(handlerNum, llevel, debug_domains, mask)
     setEventMask.needconfig = False
+    setEventMask.readonly = True
 
     def setFeatures(self, command, params):
         """

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


More information about the Openembedded-commits mailing list