Lines Matching refs:destlayerdir
556 destlayerdir = find_layerdir(destdir)
561 confdata.setVar('LAYERDIR', destlayerdir)
562 destlayerconf = os.path.join(destlayerdir, "conf", "layer.conf")
584 if destdir == destlayerdir:
601 if destdir == destlayerdir:
615 def get_bbappend_path(d, destlayerdir, wildcardver=False): argument
620 destlayerdir = os.path.abspath(destlayerdir)
630 confdata.setVar('LAYERDIR', destlayerdir)
631 destlayerconf = os.path.join(destlayerdir, "conf", "layer.conf")
638 …appendpath = os.path.join(destlayerdir, os.path.relpath(os.path.dirname(recipefile), origlayerdir)…
645 …elif bbfilespec.startswith(destlayerdir) and fnmatch.fnmatchcase('test.bbappend', os.path.basename…
654 appendsubdir = os.path.relpath(os.path.dirname(closepath), destlayerdir)
663 appendpath = os.path.join(destlayerdir, appendsubdir, appendfn)
669 def bbappend_recipe(rd, destlayerdir, srcfiles, install=None, wildcardver=False, machine=None, extr… argument
708 appendpath, pathok = get_bbappend_path(rd, destlayerdir, wildcardver)
713 …until you fix this the bbappend will not be applied.' % (os.path.join(destlayerdir, 'conf', 'layer…
722 if not os.path.abspath(destlayerdir) in layerdirs: