Home
last modified time | relevance | path

Searched refs:bblayers_conf (Results 1 – 6 of 6) sorted by relevance

/OK3568_Linux_fs/yocto/poky/bitbake/lib/bblayers/
H A Daction.py40 bblayers_conf = os.path.join('conf', 'bblayers.conf')
41 if not os.path.exists(bblayers_conf):
48 shutil.copy2(bblayers_conf, backup)
51 notadded, _ = bb.utils.edit_bblayers_conf(bblayers_conf, layerdirs, None)
57 shutil.copy2(backup, bblayers_conf)
68 bblayers_conf = os.path.join('conf', 'bblayers.conf')
69 if not os.path.exists(bblayers_conf):
82 (_, notremoved) = bb.utils.edit_bblayers_conf(bblayers_conf, None, layerdirs)
/OK3568_Linux_fs/yocto/poky/scripts/
H A Ddevtool184 bblayers_conf = os.path.join(basepath, 'conf', 'bblayers.conf')
185 if not os.path.exists(bblayers_conf):
192 _, added = bb.utils.edit_bblayers_conf(bblayers_conf, workspacedir, removedir)
/OK3568_Linux_fs/yocto/poky/meta/lib/oeqa/selftest/cases/
H A Dbuildoptions.py125 bblayers_conf = 'BBLAYERS += "%s"\n' % dummy_layer_path
126 self.write_bblayers_config(bblayers_conf)
H A Dsstatetests.py600 bblayers_conf = 'BBLAYERS += "%s"\nBBLAYERS:remove = "%s"' % (copy_layer_1, core_layer)
601 self.write_bblayers_config(bblayers_conf)
609 bblayers_conf = 'BBLAYERS += "%s"\nBBLAYERS:remove = "%s"' % (copy_layer_2, core_layer)
610 self.write_bblayers_config(bblayers_conf)
H A Ddevtool.py25 bblayers_conf = os.path.join(os.environ['BUILDDIR'], 'conf', 'bblayers.conf')
68 bb.utils.edit_bblayers_conf(bblayers_conf, None, None, bblayers_edit_cb)
79 bblayers_conf = os.path.join(os.environ['BUILDDIR'], 'conf', 'bblayers.conf')
80 bb.utils.edit_bblayers_conf(bblayers_conf, None, None, bblayers_edit_cb)
/OK3568_Linux_fs/yocto/poky/bitbake/lib/bb/
H A Dutils.py1396 def edit_bblayers_conf(bblayers_conf, add, remove, edit_cb=None): argument
1487 with open(bblayers_conf, 'r') as f:
1491 raise Exception('Unable to find BBLAYERS in %s' % bblayers_conf)
1515 with open(bblayers_conf, 'w') as f: