diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-08-16 18:00:13 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-08-18 10:07:23 +0100 |
commit | 189371f8393971d00bca0fceffd67cc07784f6ee (patch) | |
tree | 3b210e6773ea695a18db318f538e47842a1b9e2c /scripts/lib/devtool/__init__.py | |
parent | 8b35b032ed47e8f8a89bce354ffd82e0301043ac (diff) | |
download | poky-189371f8393971d00bca0fceffd67cc07784f6ee.tar.gz |
devtool/recipetool/meta: Adapt to bitbake API changes for multi-configuration builds
Unfortunately to implenent multiconfig support in bitbake some APIs
had to change. This updates code in OE to match the changes in bitbake.
Its mostly periperhal changes around devtool/recipetool
[Will need a bitbake version requirement bump which I'll make when merging]
(From OE-Core rev: 041212fa37bb83acac5ce4ceb9b7b77ad172c5c3)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'scripts/lib/devtool/__init__.py')
-rw-r--r-- | scripts/lib/devtool/__init__.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/scripts/lib/devtool/__init__.py b/scripts/lib/devtool/__init__.py index 65eb4527bc..216b7c345a 100644 --- a/scripts/lib/devtool/__init__.py +++ b/scripts/lib/devtool/__init__.py | |||
@@ -146,8 +146,7 @@ def parse_recipe(config, tinfoil, pn, appends, filter_workspace=True): | |||
146 | not path.startswith(config.workspace_path)] | 146 | not path.startswith(config.workspace_path)] |
147 | else: | 147 | else: |
148 | append_files = None | 148 | append_files = None |
149 | return oe.recipeutils.parse_recipe(recipefile, append_files, | 149 | return oe.recipeutils.parse_recipe(tinfoil.cooker, recipefile, append_files) |
150 | tinfoil.config_data) | ||
151 | 150 | ||
152 | def check_workspace_recipe(workspace, pn, checksrc=True, bbclassextend=False): | 151 | def check_workspace_recipe(workspace, pn, checksrc=True, bbclassextend=False): |
153 | """ | 152 | """ |