mirror of
https://git.yoctoproject.org/poky
synced 2026-02-20 08:29:42 +01:00
bitbake: bitbake/cooker: fix some calls of cookerdata.findConfigFile method
Cookerdata.findconfigFile method has a new parameter. Changed some calls. (Bitbake rev: dce0f9d4afe0986e2dd0146944fc4ac9dde275e4) Signed-off-by: Cristiana Voicu <cristiana.voicu@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
c7994f83ba
commit
1b814498b6
@@ -170,7 +170,7 @@ class BBCooker:
|
||||
|
||||
def appendConfigurationVar(self, var, val, default_file):
|
||||
#add append var operation to the end of default_file
|
||||
default_file = bb.cookerdata.findConfigFile(default_file)
|
||||
default_file = bb.cookerdata.findConfigFile(default_file, self.data)
|
||||
|
||||
with open(default_file, 'r') as f:
|
||||
contents = f.readlines()
|
||||
@@ -252,7 +252,7 @@ class BBCooker:
|
||||
self.data.varhistory.del_var_history(var)
|
||||
|
||||
#add var to the end of default_file
|
||||
default_file = bb.cookerdata.findConfigFile(default_file)
|
||||
default_file = bb.cookerdata.findConfigFile(default_file, self.data)
|
||||
|
||||
with open(default_file, 'r') as f:
|
||||
contents = f.readlines()
|
||||
@@ -697,7 +697,7 @@ class BBCooker:
|
||||
Find the location on disk of configfile and if it exists and was parsed by BitBake
|
||||
emit the ConfigFilePathFound event with the path to the file.
|
||||
"""
|
||||
path = bb.cookerdata.findConfigFile(configfile)
|
||||
path = bb.cookerdata.findConfigFile(configfile, self.data)
|
||||
if not path:
|
||||
return
|
||||
|
||||
|
||||
Reference in New Issue
Block a user