| /OK3568_Linux_fs/external/xserver/hw/xquartz/mach-startup/ |
| H A D | bundle_trampoline.c | 68 char *executable = NULL; in main() local 70 asprintf(&executable, "%s/X11.sh", executable_directory); in main() 71 if (access(executable, X_OK) == -1) { in main() 72 free(executable); in main() 73 asprintf(&executable, "%s/X11", executable_directory); in main() 75 assert(access(executable, X_OK) == 0); in main() 77 argv[0] = executable; in main() 84 assert(posix_spawn(&child_pid, executable, NULL, &attr, argv, envp) == 0); in main()
|
| /OK3568_Linux_fs/kernel/tools/scripts/ |
| H A D | utilities.mak | 139 # Usage: absolute-executable-path-or-empty = $(call lookup,path) 147 # is-executable 149 # Usage: bool-value = $(call is-executable,path) 154 is-executable = $(call _is-executable-helper,$(shell-sq)) 155 _is-executable-helper = $(shell sh -c $(_is-executable-sh)) 156 _is-executable-sh = $(call shell-sq,test -f $(1) -a -x $(1) && echo y) 158 # get-executable 160 # Usage: absolute-executable-path-or-empty = $(call get-executable,path) 162 # The goal is to get an absolute path for an executable; 168 get-executable = $(if $(1),$(if $(is-absolute),$(_ge-abspath),$(lookup))) [all …]
|
| /OK3568_Linux_fs/buildroot/package/python-setuptools/ |
| H A D | 0001-add-executable.patch | 4 Subject: [PATCH] add executable 9 Add a new --executable option to distribute so that we can 31 + ('executable=', 'e', "specify final destination interpreter path"), 39 + self.executable = None 51 + self.executable = None 56 + ('executable','executable') 64 exec_param = getattr(bs_cmd, 'executable', None) 65 + if self.executable is not None: 66 + exec_param = self.executable
|
| /OK3568_Linux_fs/yocto/poky/meta/recipes-devtools/python/python3-installer/ |
| H A D | interpreter.patch | 21 + default=sys.executable, 22 + help=f"interpreter (defaults to {sys.executable})", 31 - interpreter=sys.executable, 40 @@ -59,20 +59,7 @@ def _build_shebang(executable: str, forlauncher: bool) -> bytes: 43 executable_bytes = executable.encode("utf-8") 49 - # Shebang support for an executable with a space in it is under-specified 55 - quoted = shlex.quote(executable).encode("utf-8")
|
| /OK3568_Linux_fs/yocto/meta-openembedded/meta-networking/recipes-connectivity/ufw/ufw/ |
| H A D | 0003-only-make-one-reference-to-env.patch | 6 If sys.executable happens to be '/usr/bin/env python' or something 9 quick sanity check on sys.executable before doing the substitution. 25 condition is removed so the shebang line is substituted with the sys.executable 27 of sys.executable and replaces it with "#! /usr/bin/env python3". 64 + # Distutils searches for the string of sys.executable and replaces it 66 print("Updating staging/ufw to use %s" % (sys.executable)) 69 - "1s%^#.*python.*%#! /usr/bin/env " + sys.executable + "%g", 70 + "1s%/.*python.*%" + sys.executable + "%g",
|
| /OK3568_Linux_fs/external/rkwifibt/ |
| H A D | meson.build | 8 executable( 14 executable( 20 executable( 26 executable(
|
| /OK3568_Linux_fs/buildroot/package/python-ipython/ |
| H A D | 0001-set-correct-python-executable-path.patch | 1 Set correct Python executable path 11 - f.write(script_src.format(executable=sys.executable, 12 + f.write(script_src.format(executable='/usr/bin/env python',
|
| /OK3568_Linux_fs/external/camera_engine_rkaiq/rkaiq/cmake/ |
| H A D | FindSphinx.cmake | 1 #Look for an executable called sphinx-build 4 DOC "Path to sphinx-build executable") 10 "Failed to find sphinx-build executable"
|
| /OK3568_Linux_fs/external/xserver/hw/dmx/examples/ |
| H A D | meson.build | 32 executable( 44 executable( 52 executable('ev', 'ev.c')
|
| /OK3568_Linux_fs/external/xserver/hw/dmx/config/ |
| H A D | meson.build | 45 executable('xdmxconfig', 68 executable('vdltodmx', 76 executable('dmxtodmx',
|
| /OK3568_Linux_fs/kernel/Documentation/admin-guide/hw-vuln/ |
| H A D | multihit.rst | 108 non-executable pages. This forces all iTLB entries to be 4K, and removes 112 as non-executable. If the guest attempts to execute in one of those pages, 113 the page is broken down into 4K pages, which are then marked executable. 120 non-executable in all shadow paging modes. 126 non-executable can be controlled with a module parameter "nx_huge_pages=". 134 non-executable huge pages in Linux kernel KVM module. All huge 135 pages in the EPT are marked as non-executable. 137 broken down into 4K pages, which are then marked executable.
|
| /OK3568_Linux_fs/yocto/poky/meta/files/common-licenses/ |
| H A D | QPL-1.0 | 21 4. You may distribute machine-executable forms of the Software or machine-executable forms of modif… 24 b. You must ensure that all recipients of the machine-executable forms are also able to receive the… 26 c. You must ensure that all modifications included in the machine-executable forms are available un… 32 a. You must ensure that all recipients of machine-executable forms of these items are also able to … 33 …distribute original and modified versions of the items in both machine-executable and source code …
|
| /OK3568_Linux_fs/buildroot/package/exim/ |
| H A D | 0003-Skip-version-check-and-symlink-installation.patch | 4 executable (on the host) and then filters its output to grab the version number. 5 This clearly cannot work if the executable is cross-compiled, so get rid of all 6 of it and just install an executable file called exim.
|
| /OK3568_Linux_fs/yocto/poky/meta/recipes-support/libseccomp/ |
| H A D | libseccomp_2.5.3.bb | 34 for file in $(find tests/* -executable -type f); do 44 for file in $(find tools/* -executable -type f); do 48 for file in $(find tools/.libs/* -executable -type f); do
|
| /OK3568_Linux_fs/external/xserver/hw/xfree86/ |
| H A D | meson.build | 101 e = executable( 139 executable('Xorg.wrap', 156 executable('cvt', 165 executable('gtf',
|
| /OK3568_Linux_fs/yocto/meta-openembedded/meta-filesystems/recipes-support/fuse/ |
| H A D | fuse3_3.10.5.bb | 43 example_excutables=`find ${B}/example -type f -executable` 44 util_excutables=`find ${B}/util -type f -executable` 45 test_excutables=`find ${B}/test -type f -executable`
|
| /OK3568_Linux_fs/yocto/poky/meta/lib/oeqa/selftest/cases/ |
| H A D | _sstatetests_noauto.py | 67 …, buildA)) + 'bitbake ' + ' '.join(map(str, primary_targets)), shell=True, executable='/bin/bash') 77 …ildB)) + 'bitbake -ccleansstate ' + target, ignore_status=True, shell=True, executable='/bin/bash') 83 …COREBASE'), buildB)) + 'bitbake ' + target, ignore_status=True, shell=True, executable='/bin/bash')
|
| /OK3568_Linux_fs/yocto/meta-openembedded/meta-networking/recipes-daemons/autofs/autofs/ |
| H A D | no-bash.patch | 18 # This file must be executable to work! chmod 755! 28 # This file must be executable to work! chmod 755!
|
| /OK3568_Linux_fs/buildroot/package/qemu/ |
| H A D | 0002-tests-fp-disable-fp-bench-build-by-default.patch | 18 @@ -631,6 +631,7 @@ fpbench = executable( 25 fptestlog2 = executable(
|
| /OK3568_Linux_fs/yocto/poky/meta/recipes-support/serf/serf/ |
| H A D | 0002-SConstruct-Fix-path-quoting-for-.def-generator.patch | 23 - Builder(action = sys.executable + ' build/gen_def.py $SOURCES > $TARGET', 24 + Builder(action = '"%s" "%s" $SOURCES > $TARGET' % (sys.executable, gen_def_script,),
|
| /OK3568_Linux_fs/yocto/poky/meta/recipes-core/glib-2.0/glib-2.0/ |
| H A D | 0001-Install-gio-querymodules-as-libexec_PROGRAM.patch | 20 @@ -936,6 +936,7 @@ gio_querymodules = executable('gio-querymodules', 'gio-querymodules.c', 'giomodu 27 glib_compile_schemas = executable('glib-compile-schemas',
|
| /OK3568_Linux_fs/buildroot/package/qt5/qt5webengine/ |
| H A D | 0002-Add-python3-build-support.patch | 49 - qtLog("A suitable Python 2 executable could not be located.") 50 + qtLog("A suitable Python executable could not be located.") 65 # Returns the unquoted path to the python executable. 77 # Returns the python executable for use with shell / make targets.
|
| /OK3568_Linux_fs/yocto/poky/meta/recipes-devtools/dnf/dnf/ |
| H A D | 0030-Run-python-scripts-using-env.patch | 23 # dnf-automatic executable. 33 # The dnf executable script.
|
| /OK3568_Linux_fs/buildroot/package/zxing-cpp/ |
| H A D | 0001-Link-library-with-OpenCV-make-libs-private-not-exported-to-the-users.patch | 4 Subject: [PATCH] Link library with OpenCV, not only the executable, make libs 41 # Add cli executable.
|
| /OK3568_Linux_fs/kernel/tools/perf/scripts/perl/Perf-Trace-Util/ |
| H A D | README | 11 executable; scripts wishing to do that should 'use Context.pm'. 15 perf executable, you add desciptions of the new functions here. 16 scripting_context is a pointer to the perf data in the perf executable
|