| /OK3568_Linux_fs/external/camera_engine_rkaiq/rkaiq/tools/j2s4b/cmake/ |
| H A D | GitVersion.cmake | 36 set(VERSION_RC_START_TAG_PREFIX "rc-") # If available tags with the given prefix are used for dista… 46 # ${prefix}_VERSION_SUCCESS // 0 on error (e.g. git not found), 1 on success 47 # ${prefix}_VERSION_MAJOR 48 # ${prefix}_VERSION_MINOR 49 # ${prefix}_VERSION_PATCH 50 # ${prefix}_VERSION_FLAG 51 # ${prefix}_VERSION_DISTANCE 52 # ${prefix}_VERSION_SHORTHASH 53 # ${prefix}_VERSION_FULLHASH 54 # ${prefix}_VERSION_ISDIRTY // 0 or 1 if tree has local modifications [all …]
|
| H A D | ArchiveVersionInfo.cmake.in | 4 set(@PREFIX@_VERSION_MAJOR "@VERSION_MAJOR@") 5 set(@PREFIX@_VERSION_MINOR "@VERSION_MINOR@") 6 set(@PREFIX@_VERSION_PATCH "@VERSION_PATCH@") 7 set(@PREFIX@_VERSION_FLAG "@VERSION_FLAG@") 8 set(@PREFIX@_VERSION_DISTANCE "@VERSION_DISTANCE@") 9 set(@PREFIX@_VERSION_SHORTHASH "@VERSION_SHORTHASH@") 10 set(@PREFIX@_VERSION_FULLHASH "@VERSION_FULLHASH@") 11 set(@PREFIX@_VERSION_STRING "@VERSION_STRING@") 12 set(@PREFIX@_VERSION_ISDIRTY "@VERSION_ISDIRTY@") 13 set(@PREFIX@_VERSION_BRANCH "@VERSION_BRANCH@") [all …]
|
| /OK3568_Linux_fs/yocto/meta-openembedded/meta-oe/recipes-kernel/pm-graph/pm-graph/ |
| H A D | 0001-Makefile-fix-multilib-build-failure.patch | 19 PREFIX ?= /usr 30 - install -d $(DESTDIR)$(PREFIX)/lib/pm-graph 31 - install sleepgraph.py $(DESTDIR)$(PREFIX)/lib/pm-graph 32 - install bootgraph.py $(DESTDIR)$(PREFIX)/lib/pm-graph 33 - install -d $(DESTDIR)$(PREFIX)/lib/pm-graph/config 34 - install -m 644 config/cgskip.txt $(DESTDIR)$(PREFIX)/lib/pm-graph/config 35 - install -m 644 config/freeze-callgraph.cfg $(DESTDIR)$(PREFIX)/lib/pm-graph/config 36 - install -m 644 config/freeze.cfg $(DESTDIR)$(PREFIX)/lib/pm-graph/config 37 - install -m 644 config/freeze-dev.cfg $(DESTDIR)$(PREFIX)/lib/pm-graph/config 38 - install -m 644 config/standby-callgraph.cfg $(DESTDIR)$(PREFIX)/lib/pm-graph/config [all …]
|
| /OK3568_Linux_fs/kernel/tools/power/pm-graph/ |
| H A D | Makefile | 2 PREFIX ?= /usr macro 9 install -d $(DESTDIR)$(PREFIX)/lib/pm-graph 10 install sleepgraph.py $(DESTDIR)$(PREFIX)/lib/pm-graph 11 install bootgraph.py $(DESTDIR)$(PREFIX)/lib/pm-graph 12 install -d $(DESTDIR)$(PREFIX)/lib/pm-graph/config 13 install -m 644 config/cgskip.txt $(DESTDIR)$(PREFIX)/lib/pm-graph/config 14 install -m 644 config/freeze-callgraph.cfg $(DESTDIR)$(PREFIX)/lib/pm-graph/config 15 install -m 644 config/freeze.cfg $(DESTDIR)$(PREFIX)/lib/pm-graph/config 16 install -m 644 config/freeze-dev.cfg $(DESTDIR)$(PREFIX)/lib/pm-graph/config 17 install -m 644 config/standby-callgraph.cfg $(DESTDIR)$(PREFIX)/lib/pm-graph/config [all …]
|
| /OK3568_Linux_fs/buildroot/package/libloki/ |
| H A D | 0001-allow-to-install-to-a-specific-location-using-DESTDI.patch | 7 headers, libraries and binaries. It's not the same as "prefix". 9 So while installing to Buildroot STAGING directory, use prefix=/usr 27 - mkdir -p $(prefix)/include/loki 28 - mkdir -p $(prefix)/include/loki/flex 29 - mkdir -p $(prefix)/include/loki/yasli 30 + mkdir -p $(DESTDIR)$(prefix)/include/loki 31 + mkdir -p $(DESTDIR)$(prefix)/include/loki/flex 32 + mkdir -p $(DESTDIR)$(prefix)/include/loki/yasli 34 - install -m 644 loki/*.h $(prefix)/include/loki 35 - install -m 644 loki/flex/*.h $(prefix)/include/loki/flex [all …]
|
| /OK3568_Linux_fs/buildroot/package/bzip2/ |
| H A D | 0002-improve-build-system.patch | 37 PREFIX=/usr/local 39 cp -f libbz2.a $(PREFIX)/lib 40 chmod a+r $(PREFIX)/lib/libbz2.a 41 cp -f bzgrep $(PREFIX)/bin/bzgrep 42 - ln -s -f $(PREFIX)/bin/bzgrep $(PREFIX)/bin/bzegrep 43 - ln -s -f $(PREFIX)/bin/bzgrep $(PREFIX)/bin/bzfgrep 44 + ln -s -f bzgrep $(PREFIX)/bin/bzegrep 45 + ln -s -f bzgrep $(PREFIX)/bin/bzfgrep 46 chmod a+x $(PREFIX)/bin/bzgrep 47 cp -f bzmore $(PREFIX)/bin/bzmore [all …]
|
| /OK3568_Linux_fs/yocto/poky/meta/recipes-extended/ltp/ |
| H A D | ltp_20220121.bb | 41 export prefix = "/opt/${PN}" 55 install -d ${D}${prefix}/ 64 rm -rf ${D}${prefix}/bin/STPfailure_report.pl 66 # Copy POSIX test suite into ${D}${prefix}/testcases by manual 67 cp -r testcases/open_posix_testsuite ${D}${prefix}/testcases 70 find ${D}${prefix} -name Makefile | xargs -n 1 sed -i \ 71 -e 's@[^ ]*-fdebug-prefix-map=[^ "]*@@g' \ 72 -e 's@[^ ]*-fmacro-prefix-map=[^ "]*@@g' \ 73 -e 's@[^ ]*-ffile-prefix-map=[^ "]*@@g' \ 78 sed -e '/^memcg_stress/d' -i ${D}${prefix}/runtest/controllers [all …]
|
| /OK3568_Linux_fs/kernel/drivers/firmware/broadcom/ |
| H A D | bcm47xx_sprom.c | 36 static void create_key(const char *prefix, const char *postfix, in create_key() argument 39 if (prefix && postfix) in create_key() 40 snprintf(buf, len, "%s%s%s", prefix, name, postfix); in create_key() 41 else if (prefix) in create_key() 42 snprintf(buf, len, "%s%s", prefix, name); in create_key() 49 static int get_nvram_var(const char *prefix, const char *postfix, in get_nvram_var() argument 55 create_key(prefix, postfix, name, key, sizeof(key)); in get_nvram_var() 58 if (fallback && err == -ENOENT && prefix) { in get_nvram_var() 66 static void nvram_read_ ## type(const char *prefix, \ 74 err = get_nvram_var(prefix, postfix, name, buf, sizeof(buf), \ [all …]
|
| /OK3568_Linux_fs/yocto/poky/meta/recipes-devtools/python/python3/ |
| H A D | 12-distutils-prefix-is-inside-staging-area.patch | 10 The proper prefix is inside our staging area. 24 @@ -277,7 +277,9 @@ def get_python_inc(plat_specific=0, prefix=None): 25 If 'prefix' is supplied, use it instead of sys.base_prefix or 28 - if prefix is None: 29 + if prefix is None and os.environ.get('STAGING_INCDIR', ""): 30 + prefix = os.environ['STAGING_INCDIR'].rstrip('include') 31 + elif prefix is None: 32 prefix = plat_specific and BASE_EXEC_PREFIX or BASE_PREFIX 35 @@ -320,7 +322,13 @@ def get_python_lib(plat_specific=0, standard_lib=0, prefix=None): 36 If 'prefix' is supplied, use it instead of sys.base_prefix or [all …]
|
| /OK3568_Linux_fs/yocto/meta-openembedded/meta-oe/recipes-multimedia/webm/libvpx/ |
| H A D | libvpx-configure-support-blank-prefix.patch | 6 Fix configure to accept "--prefix=" (a blank prefix). 18 --prefix=*) 19 prefix="${optval}" 20 + # Distinguish between "prefix not set" and "prefix set to ''" 29 - prefix="${prefix:-/usr/local}" 32 + prefix=/usr/local 36 prefix="${prefix%/}" 38 libdir="${libdir:-${prefix}/lib}" 40 - if [ "${libdir#${prefix}}" = "${libdir}" ]; then 41 - die "Libdir ${libdir} must be a subdirectory of ${prefix}" [all …]
|
| /OK3568_Linux_fs/kernel/drivers/regulator/ |
| H A D | mc13xxx.h | 55 #define MC13xxx_DEFINE(prefix, _name, _node, _reg, _vsel_reg, _voltages, _ops) \ argument 56 [prefix ## _name] = { \ 63 .id = prefix ## _name, \ 66 .reg = prefix ## _reg, \ 67 .enable_bit = prefix ## _reg ## _ ## _name ## EN, \ 68 .vsel_reg = prefix ## _vsel_reg, \ 69 .vsel_shift = prefix ## _vsel_reg ## _ ## _name ## VSEL,\ 70 .vsel_mask = prefix ## _vsel_reg ## _ ## _name ## VSEL_M,\ 73 #define MC13xxx_FIXED_DEFINE(prefix, _name, _node, _reg, _voltages, _ops) \ argument 74 [prefix ## _name] = { \ [all …]
|
| /OK3568_Linux_fs/buildroot/support/scripts/ |
| H A D | gen-bootlin-toolchains | 24 # - 'prefix' is the prefix of the cross-compilation toolchain tools 29 'prefix': 'aarch64', 33 'prefix': 'aarch64_be', 37 'prefix': 'arc', 41 'prefix': 'arc', 46 'prefix': 'arm', 51 'prefix': 'arm', 56 'prefix': 'arm', 61 'prefix': 'arm', 66 'prefix': 'm68k', [all …]
|
| /OK3568_Linux_fs/kernel/drivers/usb/gadget/function/ |
| H A D | f_mass_storage.h | 21 #define _FSG_MODULE_PARAM_ARRAY(prefix, params, name, type, desc) \ argument 22 module_param_array_named(prefix ## name, params.name, type, \ 23 &prefix ## params.name ## _count, \ 25 MODULE_PARM_DESC(prefix ## name, desc) 27 #define _FSG_MODULE_PARAM(prefix, params, name, type, desc) \ argument 28 module_param_named(prefix ## name, params.name, type, \ 30 MODULE_PARM_DESC(prefix ## name, desc) 32 #define __FSG_MODULE_PARAMETERS(prefix, params) \ argument 33 _FSG_MODULE_PARAM_ARRAY(prefix, params, file, charp, \ 35 _FSG_MODULE_PARAM_ARRAY(prefix, params, ro, bool, \ [all …]
|
| /OK3568_Linux_fs/kernel/Documentation/hwmon/ |
| H A D | isl68137.rst | 8 Prefix: 'isl68137' 19 Prefix: 'isl68220' 29 Prefix: 'isl68221' 39 Prefix: 'isl68222' 49 Prefix: 'isl68223' 59 Prefix: 'isl68224' 69 Prefix: 'isl68225' 79 Prefix: 'isl68226' 89 Prefix: 'isl68227' 99 Prefix: 'isl68229' [all …]
|
| H A D | lm90.rst | 8 Prefix: 'lm90' 18 Prefix: 'lm89' (no auto-detection) 28 Prefix: 'lm99' 38 Prefix: 'lm86' 48 Prefix: 'adm1032' 58 Prefix: 'adt7461' 68 Prefix: 'adt7461a' 78 Prefix: 'nct1008' 88 Prefix: 'max6646' 98 Prefix: 'max6646' [all …]
|
| /OK3568_Linux_fs/kernel/arch/riscv/include/asm/ |
| H A D | atomic.h | 54 #define ATOMIC_OP(op, asm_op, I, asm_type, c_type, prefix) \ argument 56 void atomic##prefix##_##op(c_type i, atomic##prefix##_t *v) \ 88 #define ATOMIC_FETCH_OP(op, asm_op, I, asm_type, c_type, prefix) \ in ATOMIC_OPS() argument 90 c_type atomic##prefix##_fetch_##op##_relaxed(c_type i, \ in ATOMIC_OPS() 91 atomic##prefix##_t *v) \ in ATOMIC_OPS() 102 c_type atomic##prefix##_fetch_##op(c_type i, atomic##prefix##_t *v) \ 113 #define ATOMIC_OP_RETURN(op, asm_op, c_op, I, asm_type, c_type, prefix) \ argument 115 c_type atomic##prefix##_##op##_return_relaxed(c_type i, \ 116 atomic##prefix##_t *v) \ 118 return atomic##prefix##_fetch_##op##_relaxed(i, v) c_op I; \ [all …]
|
| /OK3568_Linux_fs/yocto/poky/meta/recipes-core/gettext/gettext-minimal-0.21/aclocal/ |
| H A D | lib-prefix.m4 | 1 # lib-prefix.m4 serial 17 12 dnl with the same --prefix option. 28 AC_ARG_WITH([lib-prefix], 29 [[ --with-lib-prefix[=DIR] search for libraries in DIR/include and DIR/lib 30 --without-lib-prefix don't search for libraries in includedir and libdir]], 113 dnl acl_final_exec_prefix, containing the values to which $prefix and 117 dnl Unfortunately, prefix and exec_prefix get only finally determined 119 if test "X$prefix" = "XNONE"; then 122 acl_final_prefix="$prefix" 125 acl_final_exec_prefix='${prefix}' [all …]
|
| /OK3568_Linux_fs/yocto/poky/meta/classes/ |
| H A D | scons.bbclass | 12 …${STAGING_BINDIR_NATIVE}/scons --directory=${S} --clean PREFIX=${prefix} prefix=${prefix} ${EXTRA_… 21 …${STAGING_BINDIR_NATIVE}/scons --directory=${S} ${PARALLEL_MAKE} PREFIX=${prefix} prefix=${prefix}… 26 …INDIR_NATIVE}/scons --directory=${S} install_root=${D}${prefix} PREFIX=${prefix} prefix=${prefix} …
|
| /OK3568_Linux_fs/buildroot/package/python3/ |
| H A D | 0010-Misc-python-config.sh.in-ensure-sed-invocations-only.patch | 7 The build/real prefix handling using sed breaks if build != real and the 8 standard include / lib directories are used ($prefix/include and $prefix/lib). 12 prefix_build="/usr", libdir="$prefix/lib", includedir="$prefix/include". 15 prefix_real = prefix = "/foo/usr" as expected, but 17 the double sed invocation (prefix is already expanded). Work around it by 35 +prefix_build="@prefix@" 39 # locations. Keep prefix & exec_prefix using their original values in case 42 -prefix="@prefix@" 44 +prefix=$(echo "$prefix_build" | sed "s#^$prefix_build#$prefix_real#") 47 -includedir=$(echo "@includedir@" | sed "s#$prefix#$prefix_real#") [all …]
|
| /OK3568_Linux_fs/buildroot/package/jitterentropy-library/ |
| H A D | 0002-Makefile-add-additional-install-targets.patch | 28 install -d -m 0755 $(DESTDIR)$(PREFIX)/share/man/man3 29 install -m 644 doc/$(NAME).3 $(DESTDIR)$(PREFIX)/share/man/man3/ 30 gzip -f -9 $(DESTDIR)$(PREFIX)/share/man/man3/$(NAME).3 33 install -d -m 0755 $(DESTDIR)$(PREFIX)/$(LIBDIR) 34 $(INSTALL_STRIP) -m 0755 lib$(NAME).so.$(LIBVERSION) $(DESTDIR)$(PREFIX)/$(LIBDIR)/ 35 - install -d -m 0755 $(DESTDIR)$(PREFIX)/$(INCDIR) 36 - install -m 0644 jitterentropy.h $(DESTDIR)$(PREFIX)/$(INCDIR)/ 37 - install -m 0644 jitterentropy-base-user.h $(DESTDIR)$(PREFIX)/$(INCDIR)/ 38 $(RM) $(DESTDIR)$(PREFIX)/$(LIBDIR)/lib$(NAME).so.$(LIBMAJOR) 39 ln -sf lib$(NAME).so.$(LIBVERSION) $(DESTDIR)$(PREFIX)/$(LIBDIR)/lib$(NAME).so.$(LIBMAJOR) [all …]
|
| H A D | 0001-Makefile-cleanup-install.patch | 37 install -d -m 0755 $(DESTDIR)$(PREFIX)/share/man/man3 38 install -m 644 doc/$(NAME).3 $(DESTDIR)$(PREFIX)/share/man/man3/ 39 - gzip -9 $(DESTDIR)$(PREFIX)/share/man/man3/$(NAME).3 40 + gzip -f -9 $(DESTDIR)$(PREFIX)/share/man/man3/$(NAME).3 41 install -d -m 0755 $(DESTDIR)$(PREFIX)/$(LIBDIR) 42 - install -m 0755 -s lib$(NAME).so.$(LIBVERSION) $(DESTDIR)$(PREFIX)/$(LIBDIR)/ 43 + $(INSTALL_STRIP) -m 0755 lib$(NAME).so.$(LIBVERSION) $(DESTDIR)$(PREFIX)/$(LIBDIR)/ 44 install -d -m 0755 $(DESTDIR)$(PREFIX)/$(INCDIR) 45 install -m 0644 jitterentropy.h $(DESTDIR)$(PREFIX)/$(INCDIR)/ 46 install -m 0644 jitterentropy-base-user.h $(DESTDIR)$(PREFIX)/$(INCDIR)/ [all …]
|
| /OK3568_Linux_fs/yocto/poky/meta/recipes-kernel/systemtap/systemtap/ |
| H A D | 0001-Install-python-modules-to-correct-library-dir.patch | 9 Add OE's CFLAGS which contains `-fdebug-prefix-map' options to 13 it as a prefix to strip off the purported filename encoded 14 in bytecode files. (It strips build path prefix from .pyc files) 29 +# Add OE's CFLAGS which contains `-fdebug-prefix-map' options to 40 - install --prefix $(DESTDIR)$(prefix) \ 41 + install --root $(DESTDIR) --prefix $(prefix) --prefix $(prefix) --install-lib=${pythondir} \ 49 - install --prefix $(DESTDIR)$(prefix) \ 50 + install --root $(DESTDIR) --prefix $(prefix) --install-lib=${python3dir} \
|
| /OK3568_Linux_fs/external/rknpu2/examples/3rdparty/opencv/opencv-linux-aarch64/include/opencv2/core/hal/ |
| H A D | intrin.hpp | 171 // but some of AVX2 intrinsics get v256_ prefix instead of v_, e.g. v256_load() vs v_load(). 173 // available instruction set) will get vx_ prefix 229 #define CV_INTRIN_DEFINE_WIDE_INTRIN(typ, vtyp, short_typ, prefix, loadsfx) \ argument 230 inline vtyp vx_setall_##short_typ(typ v) { return prefix##_setall_##short_typ(v); } \ 231 inline vtyp vx_setzero_##short_typ() { return prefix##_setzero_##short_typ(); } \ 232 inline vtyp vx_##loadsfx(const typ* ptr) { return prefix##_##loadsfx(ptr); } \ 233 … inline vtyp vx_##loadsfx##_aligned(const typ* ptr) { return prefix##_##loadsfx##_aligned(ptr); } \ 234 inline vtyp vx_##loadsfx##_low(const typ* ptr) { return prefix##_##loadsfx##_low(ptr); } \ 235 …inline vtyp vx_##loadsfx##_halves(const typ* ptr0, const typ* ptr1) { return prefix##_##loadsfx##_… 239 #define CV_INTRIN_DEFINE_WIDE_LOAD_EXPAND(typ, wtyp, prefix) \ argument [all …]
|
| /OK3568_Linux_fs/external/rknpu2/examples/3rdparty/opencv/OpenCV-android-sdk/sdk/native/jni/include/opencv2/core/hal/ |
| H A D | intrin.hpp | 171 // but some of AVX2 intrinsics get v256_ prefix instead of v_, e.g. v256_load() vs v_load(). 173 // available instruction set) will get vx_ prefix 229 #define CV_INTRIN_DEFINE_WIDE_INTRIN(typ, vtyp, short_typ, prefix, loadsfx) \ argument 230 inline vtyp vx_setall_##short_typ(typ v) { return prefix##_setall_##short_typ(v); } \ 231 inline vtyp vx_setzero_##short_typ() { return prefix##_setzero_##short_typ(); } \ 232 inline vtyp vx_##loadsfx(const typ* ptr) { return prefix##_##loadsfx(ptr); } \ 233 … inline vtyp vx_##loadsfx##_aligned(const typ* ptr) { return prefix##_##loadsfx##_aligned(ptr); } \ 234 inline vtyp vx_##loadsfx##_low(const typ* ptr) { return prefix##_##loadsfx##_low(ptr); } \ 235 …inline vtyp vx_##loadsfx##_halves(const typ* ptr0, const typ* ptr1) { return prefix##_##loadsfx##_… 239 #define CV_INTRIN_DEFINE_WIDE_LOAD_EXPAND(typ, wtyp, prefix) \ argument [all …]
|
| /OK3568_Linux_fs/external/rknpu2/examples/3rdparty/opencv/opencv-linux-armhf/include/opencv2/core/hal/ |
| H A D | intrin.hpp | 171 // but some of AVX2 intrinsics get v256_ prefix instead of v_, e.g. v256_load() vs v_load(). 173 // available instruction set) will get vx_ prefix 229 #define CV_INTRIN_DEFINE_WIDE_INTRIN(typ, vtyp, short_typ, prefix, loadsfx) \ argument 230 inline vtyp vx_setall_##short_typ(typ v) { return prefix##_setall_##short_typ(v); } \ 231 inline vtyp vx_setzero_##short_typ() { return prefix##_setzero_##short_typ(); } \ 232 inline vtyp vx_##loadsfx(const typ* ptr) { return prefix##_##loadsfx(ptr); } \ 233 … inline vtyp vx_##loadsfx##_aligned(const typ* ptr) { return prefix##_##loadsfx##_aligned(ptr); } \ 234 inline vtyp vx_##loadsfx##_low(const typ* ptr) { return prefix##_##loadsfx##_low(ptr); } \ 235 …inline vtyp vx_##loadsfx##_halves(const typ* ptr0, const typ* ptr1) { return prefix##_##loadsfx##_… 239 #define CV_INTRIN_DEFINE_WIDE_LOAD_EXPAND(typ, wtyp, prefix) \ argument [all …]
|