Now we have the bbappends list and all users have been converted over to
use it, we don't need this anymore.
Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
class CookerCollectFiles(object):
def __init__(self, priorities):
- self.appendlist = {}
self.bbappends = []
self.bbfile_config_priorities = priorities
for f in bbappend:
base = os.path.basename(f).replace('.bbappend', '.bb')
self.bbappends.append((base, f))
- if not base in self.appendlist:
- self.appendlist[base] = []
- if f not in self.appendlist[base]:
- self.appendlist[base].append(f)
# Find overlayed recipes
# bbfiles will be in priority order which makes this easy