| /OK3568_Linux_fs/yocto/poky/bitbake/lib/bb/tests/ |
| H A D | cooker.py | 20 topdir = os.path.join(os.path.dirname(os.path.realpath(__file__)), "testdata/cooker") 21 self.d.setVar('TOPDIR', topdir) 27 def append_collection(topdir, path, d): argument 29 pattern = "^" + topdir + "/" + path + "/" 39 topdir = self.d.getVar("TOPDIR") 44 bbfile_config_priorities.append( append_collection(topdir, 'first', self.d) ) 45 bbfile_config_priorities.append( append_collection(topdir, 'second', self.d) ) 46 bbfile_config_priorities.append( append_collection(topdir, 'second/third', self.d) ) 48 pkgfns = [ topdir + '/first/recipes/sample1_1.0.bb', 49 topdir + '/second/recipes/sample2_1.0.bb', [all …]
|
| /OK3568_Linux_fs/yocto/poky/meta/lib/oeqa/selftest/cases/ |
| H A D | sstatetests.py | 263 self.track_for_cleanup(self.topdir + "/tmp-sstatesamehash") 275 self.track_for_cleanup(self.topdir + "/tmp-sstatesamehash2") 288 files1 = get_files(self.topdir + "/tmp-sstatesamehash/stamps/") 289 files2 = get_files(self.topdir + "/tmp-sstatesamehash2/stamps/") 308 self.track_for_cleanup(self.topdir + "/tmp-sstatesamehash") 316 self.track_for_cleanup(self.topdir + "/tmp-sstatesamehash2") 324 files1 = get_files(self.topdir + "/tmp-sstatesamehash/stamps/") 325 files2 = get_files(self.topdir + "/tmp-sstatesamehash2/stamps/") 381 self.track_for_cleanup(self.topdir + "/tmp-sstatesamehash") 384 self.track_for_cleanup(self.topdir + "/tmp-sstatesamehash2") [all …]
|
| H A D | reproducible.py | 199 tmpdir = os.path.join(self.topdir, name, 'tmp') 238 if s.startswith(self.topdir): 239 return s[len(self.topdir):]
|
| H A D | sstate.py | 25 self.topdir = bb_vars['TOPDIR']
|
| /OK3568_Linux_fs/yocto/poky/scripts/ |
| H A D | sysroot-relativelinks.py | 16 topdir = sys.argv[1] variable 17 topdir = os.path.abspath(topdir) variable 23 if link.startswith(topdir): 26 print("Replacing %s with %s for %s" % (link, os.path.relpath(topdir+link, subdir), filep)) 28 os.symlink(os.path.relpath(topdir+link, subdir), filep) 30 for subdir, dirs, files in os.walk(topdir):
|
| H A D | sstate-cache-management.sh | 156 local topdir 172 topdir=$(dirname $oe_core_dir) 173 …tunedirs="`find $topdir/meta* ${oe_core_dir}/meta* $layers -path '*/meta*/conf/machine/include' 2>… 175 …all_machines="`find $topdir/meta* ${oe_core_dir}/meta* $layers -path '*/meta*/conf/machine/*' -nam…
|
| /OK3568_Linux_fs/kernel/net/sunrpc/ |
| H A D | debugfs.c | 13 static struct dentry *topdir; variable 303 debugfs_remove_recursive(topdir); in sunrpc_debugfs_exit() 304 topdir = NULL; in sunrpc_debugfs_exit() 314 topdir = debugfs_create_dir("sunrpc", NULL); in sunrpc_debugfs_init() 316 rpc_clnt_dir = debugfs_create_dir("rpc_clnt", topdir); in sunrpc_debugfs_init() 318 rpc_xprt_dir = debugfs_create_dir("rpc_xprt", topdir); in sunrpc_debugfs_init() 320 rpc_fault_dir = debugfs_create_dir("inject_fault", topdir); in sunrpc_debugfs_init()
|
| /OK3568_Linux_fs/external/xserver/hw/xfree86/ |
| H A D | sdksyms.sh | 303 topdir=$(readlink -f $1) 308 ${CPP:-cpp} "$@" sdksyms.c | ${AWK:-awk} -v topdir=$topdir '
|
| /OK3568_Linux_fs/yocto/poky/bitbake/bin/ |
| H A D | bitbake-layers | 21 topdir = os.path.dirname(bindir) variable 22 sys.path[0:0] = [os.path.join(topdir, 'lib')] 64 for path in ([topdir] +
|
| H A D | bitbake-getvar | 16 topdir = os.path.dirname(bindir) variable 17 sys.path[0:0] = [os.path.join(topdir, 'lib')]
|
| /OK3568_Linux_fs/yocto/poky/bitbake/lib/bb/ |
| H A D | main.py | 421 topdir, lock = lockBitbake() 422 sockname = topdir + "/bitbake.sock" 488 topdir = bb.cookerdata.findTopdir() 489 if not topdir: 492 lockfile = topdir + "/bitbake.lock" 493 return topdir, bb.utils.lockfile(lockfile, False, False)
|
| H A D | utils.py | 719 def prunedir(topdir, ionice=False): argument 722 if _check_unsafe_delete_path(topdir): 723 …raise Exception('bb.utils.prunedir: called with dangerous path "%s", refusing to delete!' % topdir) 724 remove(topdir, recurse=True, ionice=ionice)
|
| /OK3568_Linux_fs/yocto/meta-openembedded/meta-oe/recipes-kernel/oprofile/oprofile/ |
| H A D | 0009-Prevent-running-check-tests-on-host-if-cross-compili.patch | 17 'topdir' doesn't work. Instead, if CROSS_COMPILE is set, the 19 from an expression based on the host path 'topdir'. 88 SRCDIR := $(shell $(REALPATH) $(topdir)/libutil++/tests/ )
|
| /OK3568_Linux_fs/kernel/tools/perf/util/ |
| H A D | build-id.c | 450 char *topdir, *linkdir = NULL; in build_id_cache__list_all() local 458 if (asprintf(&topdir, "%s/.build-id/", buildid_dir) < 0) in build_id_cache__list_all() 465 toplist = lsdir(topdir, lsdir_bid_head_filter); in build_id_cache__list_all() 467 pr_debug("Error in lsdir(%s): %d\n", topdir, errno); in build_id_cache__list_all() 475 if (asprintf(&linkdir, "%s/%s", topdir, nd->s) < 0) in build_id_cache__list_all() 499 free(topdir); in build_id_cache__list_all()
|
| /OK3568_Linux_fs/yocto/poky/meta/classes/ |
| H A D | compress_doc.bbclass | 162 def compress_doc(topdir, compress_mode, compress_cmds): 165 for root, dirs, files in os.walk(topdir): 190 def decompress_doc(topdir, compress_mode, decompress_cmds): 194 for root, dirs, files in os.walk(topdir):
|
| H A D | qemuboot.bbclass | 127 topdir = d.getVar('TOPDIR') 144 if val.startswith(topdir):
|
| H A D | create-spdx.bbclass | 196 def add_package_files(d, doc, spdx_pkg, topdir, get_spdxid, get_types, *, archive=None, ignore_dirs… 209 for subdir, dirs, files in os.walk(topdir): 211 if subdir == str(topdir): 216 filename = str(filepath.relative_to(topdir))
|
| /OK3568_Linux_fs/yocto/poky/meta/recipes-devtools/syslinux/syslinux/ |
| H A D | syslinux-remove-clean-script.patch | 14 - $(topdir)/efi/clean-gnu-efi.sh $(EFI_SUBARCH) $(objdir)
|
| /OK3568_Linux_fs/yocto/poky/meta/recipes-devtools/ruby/ruby/ |
| H A D | 0001-extmk-fix-cross-compilation-of-external-gems.patch | 25 $ruby << "-I'$(topdir)'"
|
| /OK3568_Linux_fs/yocto/poky/meta/recipes-devtools/gdb/gdb/ |
| H A D | 0005-Dont-disable-libreadline.a-when-using-disable-static.patch | 41 --srcdir=$${topdir}/$$module_srcdir \
|
| /OK3568_Linux_fs/external/xserver/ |
| H A D | ChangeLog | 16734 These canonicalized paths won't match $topdir, so sdksyms doesn't look at
|