| /OK3568_Linux_fs/yocto/meta-openembedded/meta-oe/recipes-support/websocketpp/websocketpp-0.8.2/ |
| H A D | 857.patch | 22 env = Environment(ENV = os.environ) 25 -if os.environ.has_key('CXX'): 26 +if 'CXX' in os.environ: 27 env['CXX'] = os.environ['CXX'] 29 -if os.environ.has_key('DEBUG'): 30 +if 'DEBUG' in os.environ: 31 env['DEBUG'] = os.environ['DEBUG'] 33 -if os.environ.has_key('CXXFLAGS'): 34 +if 'CXXFLAGS' in os.environ: 35 #env['CXXFLAGS'] = os.environ['CXXFLAGS'] [all …]
|
| /OK3568_Linux_fs/yocto/meta-openembedded/meta-oe/recipes-extended/mozjs/mozjs-91/ |
| H A D | 0001-rewrite-cargo-host-linker-in-python3.patch | 37 +if os.environ['MOZ_CARGO_WRAP_HOST_LD'].strip(): 38 + binary=os.environ['MOZ_CARGO_WRAP_HOST_LD'].split()[0] 42 +if os.environ['MOZ_CARGO_WRAP_HOST_LDFLAGS'].strip(): 43 + if os.environ['MOZ_CARGO_WRAP_HOST_LD'].split()[1:]: 44 + args=[os.environ['MOZ_CARGO_WRAP_HOST_LD'].split()[0]] + os.environ['MOZ_CARGO_WRAP_HOST_L… 46 + args=[os.environ['MOZ_CARGO_WRAP_HOST_LD'].split()[0]] + [os.environ['MOZ_CARGO_WRAP_HOST_… 48 + if os.environ['MOZ_CARGO_WRAP_HOST_LD'].split()[1:]: 49 + args=[os.environ['MOZ_CARGO_WRAP_HOST_LD'].split()[0]] + os.environ['MOZ_CARGO_WRAP_HOST_L… 51 + args=[os.environ['MOZ_CARGO_WRAP_HOST_LD'].split()[0]] + sys.argv[1:]
|
| /OK3568_Linux_fs/yocto/poky/meta/classes/ |
| H A D | module.bbclass | 18 os.environ['CFLAGS'] = '' 19 os.environ['CPPFLAGS'] = '' 20 os.environ['CXXFLAGS'] = '' 21 os.environ['LDFLAGS'] = '' 23 os.environ['KERNEL_PATH'] = d.getVar('STAGING_KERNEL_DIR') 24 os.environ['KERNEL_SRC'] = d.getVar('STAGING_KERNEL_DIR') 25 os.environ['KERNEL_VERSION'] = d.getVar('KERNEL_VERSION') 26 os.environ['CC'] = d.getVar('KERNEL_CC') 27 os.environ['LD'] = d.getVar('KERNEL_LD') 28 os.environ['AR'] = d.getVar('KERNEL_AR') [all …]
|
| H A D | terminal.bbclass | 46 for v in os.environ: 47 envdata.setVar(v, os.environ[v]) 53 os.environ[export] = str(value) 57 if "PSEUDO_UNLOAD" in os.environ: 58 del os.environ["PSEUDO_UNLOAD"] 69 os.environ[key] = str(value) 75 os.environ['PATH'] = path
|
| /OK3568_Linux_fs/yocto/meta-openembedded/meta-oe/dynamic-layers/meta-python/recipes-extended/mozjs/mozjs-78/ |
| H A D | 0014-rewrite-cargo-host-linker-in-python3.patch | 37 +if os.environ['MOZ_CARGO_WRAP_HOST_LD'].strip(): 38 + binary=os.environ['MOZ_CARGO_WRAP_HOST_LD'].split()[0] 42 +if os.environ['MOZ_CARGO_WRAP_HOST_LDFLAGS'].strip(): 43 + if os.environ['MOZ_CARGO_WRAP_HOST_LD'].split()[1:]: 44 + args=[os.environ['MOZ_CARGO_WRAP_HOST_LD'].split()[0]] + os.environ['MOZ_CARGO_WRAP_HOST_L… 46 + args=[os.environ['MOZ_CARGO_WRAP_HOST_LD'].split()[0]] + [os.environ['MOZ_CARGO_WRAP_HOST_… 48 + if os.environ['MOZ_CARGO_WRAP_HOST_LD'].split()[1:]: 49 + args=[os.environ['MOZ_CARGO_WRAP_HOST_LD'].split()[0]] + os.environ['MOZ_CARGO_WRAP_HOST_L… 51 + args=[os.environ['MOZ_CARGO_WRAP_HOST_LD'].split()[0]] + sys.argv[1:]
|
| /OK3568_Linux_fs/yocto/poky/meta/lib/oeqa/selftest/cases/ |
| H A D | signing.py | 44 origenv = os.environ.copy() 46 for e in os.environ: 47 if builddir + "/" in os.environ[e]: 48 os.environ[e] = os.environ[e].replace(builddir + "/", newbuilddir + "/") 49 if os.environ[e].endswith(builddir): 50 os.environ[e] = os.environ[e].replace(builddir, newbuilddir) 57 os.environ[e] = origenv[e] 137 builddir = os.environ.get('BUILDDIR') + "-testsign" 152 with self.create_new_builddir(os.environ['BUILDDIR'], builddir): 154 os.environ["PATH"] = nsysroot + ":" + os.environ["PATH"]
|
| /OK3568_Linux_fs/kernel/security/tomoyo/ |
| H A D | environ.c | 24 return tomoyo_path_matches_pattern(r->param.environ.name, acl->env); in tomoyo_check_env_acl() 37 r->param.environ.name->name); in tomoyo_audit_env_log() 52 struct tomoyo_path_info environ; in tomoyo_env_perm() local 57 environ.name = env; in tomoyo_env_perm() 58 tomoyo_fill_path_info(&environ); in tomoyo_env_perm() 60 r->param.environ.name = &environ; in tomoyo_env_perm()
|
| /OK3568_Linux_fs/yocto/poky/meta/recipes-devtools/cmake/cmake/ |
| H A D | cmake-setup.py | 13 return os.path.basename(os.environ["OECORE_NATIVE_SYSROOT"]) 15 return os.path.basename(os.environ["OECORE_TARGET_SYSROOT"]) 17 return os.path.basename(os.environ["TARGET_PREFIX"].strip("-")) 19 return os.environ[name] 22 sysroot = os.environ['OECORE_NATIVE_SYSROOT'] 28 …oin(sysroot, 'usr/share/cmake/%s-toolchain.cmake' % (os.path.basename(os.environ["OECORE_TARGET_SY…
|
| /OK3568_Linux_fs/yocto/poky/meta/recipes-core/glibc/glibc/ |
| H A D | check-test-wrapper | 7 env = os.environ.copy() 12 qemuargs = os.environ.get("QEMU_OPTIONS", "").split() 15 for i in os.environ.get("PATH", "").split(":"): 19 sysroot = os.environ.get("QEMU_SYSROOT", None) 57 host = os.environ.get("SSH_HOST", None) 58 user = os.environ.get("SSH_HOST_USER", None) 59 port = os.environ.get("SSH_HOST_PORT", None)
|
| /OK3568_Linux_fs/yocto/poky/bitbake/lib/toaster/toastermain/ |
| H A D | settings.py | 17 if os.environ.get("TOASTER_SQLDEBUG", None) is not None: 27 TOASTER_SQLITE_DEFAULT_DIR = os.environ.get('TOASTER_DIR') 72 if 'TZ' in os.environ: 73 TIME_ZONE = os.environ['TZ'] 252 if os.environ.get('TOASTER_DEVEL', None) is not None: 262 if os.environ.get('TOASTER_DEVEL', None) is not None: 294 if 'VIRTUAL_ENV' in os.environ and os.environ['VIRTUAL_ENV'] in t[0]:
|
| /OK3568_Linux_fs/yocto/poky/bitbake/lib/bb/tests/ |
| H A D | utils.py | 97 (os.environ.get('HOME', '/home/test'), True), 561 [os.environ['HOME'] + '/path/layer4', '~/path2/layer5'], 562 … [os.environ['HOME'] + '/otherpath/layer3', '~/path/layer1', '~/path/notinlist'], 563 [os.environ['HOME'] + '/path/layer4'], 673 os.environ["A"] = "this is A" 674 self.assertIn("A", os.environ) 675 self.assertEqual(os.environ["A"], "this is A") 676 self.assertNotIn("B", os.environ) 679 self.assertIn("A", os.environ) 680 self.assertEqual(os.environ["A"], "this is A") [all …]
|
| /OK3568_Linux_fs/yocto/poky/meta/recipes-devtools/meson/meson/ |
| H A D | 0001-python-module-do-not-manipulate-the-environment-when.patch | 22 - old_pkg_libdir = os.environ.pop('PKG_CONFIG_LIBDIR', None) 23 - old_pkg_path = os.environ.pop('PKG_CONFIG_PATH', None) 25 - os.environ['PKG_CONFIG_LIBDIR'] = pkg_libdir 30 os.environ[name] = value 31 elif name in os.environ: 32 del os.environ[name]
|
| H A D | meson-setup.py | 12 val = os.environ[name] 23 sysroot = os.environ['OECORE_NATIVE_SYSROOT'] 29 cross_file = os.path.join(sysroot, 'usr/share/meson/%smeson.cross' % os.environ["TARGET_PREFIX"]) 41 …output = Template(template).substitute({'OECORE_NATIVE_SYSROOT': os.environ['OECORE_NATIVE_SYSROOT…
|
| /OK3568_Linux_fs/buildroot/support/testing/infra/ |
| H A D | builder.py | 54 env = {"PATH": os.environ["PATH"]} 81 env = {"PATH": os.environ["PATH"]} 82 if "http_proxy" in os.environ: 84 os.environ["http_proxy"] + "\n") 85 env['http_proxy'] = os.environ["http_proxy"] 86 env['https_proxy'] = os.environ["http_proxy"]
|
| /OK3568_Linux_fs/u-boot/scripts/dtc/pylibfdt/ |
| H A D | setup.py | 96 files = os.environ.get('SOURCES', '').split() 97 cflags = os.environ.get('CPPFLAGS', '').split() 98 objdir = os.environ.get('OBJDIR') 99 version = os.environ.get('VERSION') 100 swig_opts = os.environ.get('SWIG_OPTS', '').split()
|
| /OK3568_Linux_fs/yocto/poky/bitbake/lib/bb/ |
| H A D | main.py | 217 default=os.environ.get('BITBAKE_UI', 'knotty'), 221 default=os.environ.get("BBTOKEN"), 259 default=os.environ.get("BBSERVER"), 275 default=os.environ.get("BBEVENTLOG"), 299 if "BBPRECONF" in os.environ: 300 options.prefile.append(os.environ["BBPRECONF"]) 302 if "BBPOSTCONF" in os.environ: 303 options.postfile.append(os.environ["BBPOSTCONF"]) 345 ("the BBSERVER environment variable" if "BBSERVER" in os.environ \ 352 if "BBDEBUG" in os.environ: [all …]
|
| /OK3568_Linux_fs/yocto/poky/meta/recipes-devtools/python/python3/ |
| H A D | 12-distutils-prefix-is-inside-staging-area.patch | 29 + if prefix is None and os.environ.get('STAGING_INCDIR', ""): 30 + prefix = os.environ['STAGING_INCDIR'].rstrip('include') 40 + if os.environ.get('STAGING_LIBDIR', ""): 41 + lib_basename = os.environ['STAGING_LIBDIR'].split('/')[-1] 44 + if prefix is None and os.environ.get('STAGING_LIBDIR', ""): 45 + prefix = os.environ['STAGING_LIBDIR'].rstrip(lib_basename)
|
| /OK3568_Linux_fs/yocto/poky/meta/lib/oe/package_manager/deb/ |
| H A D | __init__.py | 37 os.environ['APT_CONFIG'] = self.apt_conf_file 254 os.environ['D'] = self.target_rootfs 255 os.environ['OFFLINE_ROOT'] = self.target_rootfs 256 os.environ['IPKG_OFFLINE_ROOT'] = self.target_rootfs 257 os.environ['OPKG_OFFLINE_ROOT'] = self.target_rootfs 258 os.environ['INTERCEPT_DIR'] = self.intercepts_dir 259 os.environ['NATIVE_ROOT'] = self.d.getVar('STAGING_DIR_NATIVE') 278 os.environ['APT_CONFIG'] = self.apt_conf_file 296 os.environ['APT_CONFIG'] = self.apt_conf_file 329 os.environ['D'] = self.target_rootfs [all …]
|
| /OK3568_Linux_fs/buildroot/package/gobject-introspection/ |
| H A D | 0002-Add-rpath-links-to-ccompiler.patch | 21 if envvar in os.environ: 22 + for envvar_path in os.environ[envvar].split(':'): 24 os.environ[envvar] = \ 25 os.pathsep.join(runtime_paths + [os.environ[envvar]])
|
| /OK3568_Linux_fs/yocto/poky/meta/lib/oeqa/selftest/ |
| H A D | context.py | 71 builddir = os.environ['BUILDDIR'] 89 for e in os.environ: 90 if builddir + "/" in os.environ[e]: 91 os.environ[e] = os.environ[e].replace(builddir + "/", newbuilddir + "/") 92 if os.environ[e].endswith(builddir): 93 os.environ[e] = os.environ[e].replace(builddir, newbuilddir) 222 logdir = os.environ.get("BUILDDIR") 240 builddir = os.environ.get("BUILDDIR") 267 if not os.environ.get(var): 272 builddir = os.environ.get("BUILDDIR")
|
| /OK3568_Linux_fs/buildroot/package/python3/ |
| H A D | 0004-Adjust-library-header-paths-for-cross-compilation.patch | 35 + if "_python_sysroot" in os.environ: 36 + libdir = os.environ.get("_python_sysroot") + libdir 53 +if "_python_sysroot" in os.environ: 54 + _sysroot=os.environ.get('_python_sysroot') 55 + _PREFIX = os.path.normpath(_sysroot + os.environ.get('_python_prefix')) 56 + _EXEC_PREFIX = os.path.normpath(_sysroot + os.environ.get('_python_exec_prefix'))
|
| /OK3568_Linux_fs/yocto/poky/meta/recipes-core/meta/ |
| H A D | build-sysroots.bb | 24 os.environ['PATH'] = "%s/bin:%s/usr/bin:%s" % (nativesysroot, nativesysroot, os.environ['PATH']) 35 os.environ['PATH'] = "%s/bin:%s/usr/bin:%s" % (nativesysroot, nativesysroot, os.environ['PATH'])
|
| /OK3568_Linux_fs/yocto/meta-openembedded/meta-python/recipes-extended/python-blivet/python3-blivet/ |
| H A D | 0008-use-oe-variable-to-replace-hardcoded-dir.patch | 29 + (os.environ.get('sysconfdir')+'/dbus-1/system.d', ['dbus/blivet.conf']), 30 + (os.environ.get('datadir')+'/dbus-1/system-services', ['dbus/com.redhat.Blivet0.service']), 31 + (os.environ.get('libexecdir'), ['dbus/blivetd']), 32 + (os.environ.get('systemd_system_unitdir'), ['dbus/blivet.service'])
|
| /OK3568_Linux_fs/buildroot/package/python-autobahn/ |
| H A D | 0002-Build-with-nvx-by-default-and-don-t-publish-universa.patch | 25 +if 'AUTOBAHN_USE_NVX' in os.environ and os.environ['AUTOBAHN_USE_NVX'] in ['1', 'true']: 48 -if 'AUTOBAHN_USE_NVX' in os.environ: 54 +if 'AUTOBAHN_USE_NVX' not in os.environ or os.environ['AUTOBAHN_USE_NVX'] not in ['0', 'false']:
|
| /OK3568_Linux_fs/yocto/meta-openembedded/meta-python/recipes-devtools/python/python3-pillow/ |
| H A D | 0001-support-cross-compiling.patch | 33 if k in os.environ: 34 for d in os.environ[k].split(os.path.pathsep): 39 if k in os.environ: 40 for d in os.environ[k].split(os.path.pathsep):
|