mirror of
https://git.yoctoproject.org/poky
synced 2026-05-30 00:20:08 +00:00
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>
This commit is contained in:
@@ -115,8 +115,7 @@ def _parse_recipe(pn, tinfoil):
|
||||
# Error already logged
|
||||
return None
|
||||
append_files = tinfoil.cooker.collection.get_file_appends(recipefile)
|
||||
rd = oe.recipeutils.parse_recipe(recipefile, append_files,
|
||||
tinfoil.config_data)
|
||||
rd = oe.recipeutils.parse_recipe(tinfoil.cooker, recipefile, append_files)
|
||||
return rd
|
||||
|
||||
def determine_file_source(targetpath, rd):
|
||||
|
||||
Reference in New Issue
Block a user