[bitbake-devel] [PATCH 1/2] tinfoil: allow extra features to be passed to prepare
Andy Voltz
andy.voltz at timesys.com
Thu May 18 16:09:10 UTC 2017
Signed-off-by: Andy Voltz <andy.voltz at timesys.com>
---
lib/bb/tinfoil.py | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/lib/bb/tinfoil.py b/lib/bb/tinfoil.py
index 928333a..563c0c4 100644
--- a/lib/bb/tinfoil.py
+++ b/lib/bb/tinfoil.py
@@ -228,12 +228,15 @@ class Tinfoil:
def __exit__(self, type, value, traceback):
self.shutdown()
- def prepare(self, config_only=False, config_params=None, quiet=0):
+ def prepare(self, config_only=False, config_params=None, quiet=0, extra_features=None):
if self.tracking:
extrafeatures = [bb.cooker.CookerFeatures.BASEDATASTORE_TRACKING]
else:
extrafeatures = []
+ if extra_features:
+ extrafeatures += extra_features
+
if not config_params:
config_params = TinfoilConfigParameters(config_only=config_only, quiet=quiet)
--
2.1.4
More information about the bitbake-devel
mailing list