/openbmc/openbmc/meta-security/recipes-ids/ossec/files/ |
H A D | 0002-Makefile-don-t-set-uid-gid.patch | 30 - $(call INSTALL_CMD,0550,root,0) ossec-agentd ${PREFIX}/bin 31 - $(call INSTALL_CMD,0550,root,0) agent-auth ${PREFIX}/bin 32 + $(call INSTALL_CMD,0550) ossec-agentd ${PREFIX}/bin 33 + $(call INSTALL_CMD,0550) agent-auth ${PREFIX}/bin 35 - $(call INSTALL_CMD,0750,${OSSEC_USER},${OSSEC_GROUP}) -d ${PREFIX}/queue/rids 36 + $(call INSTALL_CMD,0750) -d ${PREFIX}/queue/rids 44 - $(call INSTALL_CMD,0550,root,${OSSEC_GROUP}) -d ${PREFIX}/ 45 - $(call INSTALL_CMD,0750,${OSSEC_USER},${OSSEC_GROUP}) -d ${PREFIX}/logs 46 - $(call INSTALL_CMD,0660,${OSSEC_USER},${OSSEC_GROUP}) /dev/null ${PREFIX}/logs/ossec.log 48 - $(call INSTALL_CMD,0550,root,0) -d ${PREFIX}/bin [all …]
|
/openbmc/linux/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 …]
|
/openbmc/linux/lib/zstd/common/ |
H A D | error_private.c | 24 case PREFIX(no_error): return "No error detected"; in ERR_getErrorString() 25 case PREFIX(GENERIC): return "Error (generic)"; in ERR_getErrorString() 26 case PREFIX(prefix_unknown): return "Unknown frame descriptor"; in ERR_getErrorString() 27 case PREFIX(version_unsupported): return "Version not supported"; in ERR_getErrorString() 28 case PREFIX(frameParameter_unsupported): return "Unsupported frame parameter"; in ERR_getErrorString() 29 … case PREFIX(frameParameter_windowTooLarge): return "Frame requires too much memory for decoding"; in ERR_getErrorString() 30 case PREFIX(corruption_detected): return "Corrupted block detected"; in ERR_getErrorString() 31 case PREFIX(checksum_wrong): return "Restored data doesn't match checksum"; in ERR_getErrorString() 32 case PREFIX(parameter_unsupported): return "Unsupported parameter"; in ERR_getErrorString() 33 case PREFIX(parameter_outOfBound): return "Parameter is out of bound"; in ERR_getErrorString() [all …]
|
/openbmc/qemu/scripts/ |
H A D | mtest2make.py | 68 def emit_prolog(suites, prefix): argument 69 all_targets = ' '.join((f'{prefix}-{k}' for k in suites.keys())) 70 all_xml = ' '.join((f'{prefix}-report-{k}.junit.xml' for k in suites.keys())) 72 print(f'all-{prefix}-targets = {all_targets}') 73 print(f'all-{prefix}-xml = {all_xml}') 74 …print(f'.PHONY: {prefix} do-meson-{prefix} {prefix}-report.junit.xml $(all-{prefix}-targets) $(all… 75 print(f'ifeq ($(filter {prefix}, $(MAKECMDGOALS)),)') 76 print(f'.{prefix}.mtestargs += $(call .speed.$(SPEED), $(.{prefix}.mtest-suites))') 78 print(f'{prefix}-build: run-ninja') 79 print(f'{prefix} $(all-{prefix}-targets): do-meson-{prefix}') [all …]
|
/openbmc/qemu/block/ |
H A D | crypto.h | 24 #define BLOCK_CRYPTO_OPT_DEF_KEY_SECRET(prefix, helpstr) \ argument 26 .name = prefix BLOCK_CRYPTO_OPT_QCOW_KEY_SECRET, \ 33 #define BLOCK_CRYPTO_OPT_DEF_QCOW_KEY_SECRET(prefix) \ argument 34 BLOCK_CRYPTO_OPT_DEF_KEY_SECRET(prefix, \ 51 #define BLOCK_CRYPTO_OPT_DEF_LUKS_KEY_SECRET(prefix) \ argument 52 BLOCK_CRYPTO_OPT_DEF_KEY_SECRET(prefix, \ 55 #define BLOCK_CRYPTO_OPT_DEF_LUKS_CIPHER_ALG(prefix) \ argument 57 .name = prefix BLOCK_CRYPTO_OPT_LUKS_CIPHER_ALG, \ 62 #define BLOCK_CRYPTO_OPT_DEF_LUKS_CIPHER_MODE(prefix) \ argument 64 .name = prefix BLOCK_CRYPTO_OPT_LUKS_CIPHER_MODE, \ [all …]
|
/openbmc/linux/tools/testing/selftests/mm/ |
H A D | hugetlb-read-hwpoison.c | 16 #define PREFIX " ... " macro 61 printf(PREFIX ERROR_PREFIX "check fail: buf[%lu] = %u != %u\n", in verify_chunk() 78 printf(PREFIX PREFIX "init val=%u with offset=0x%lx\n", val, offset); in seek_read_hugepage_filemap() 79 printf(PREFIX PREFIX "expect to read 0x%lx bytes of data in total\n", in seek_read_hugepage_filemap() 82 perror(PREFIX ERROR_PREFIX "seek failed"); in seek_read_hugepage_filemap() 89 printf(PREFIX PREFIX "read reach end of the file\n"); in seek_read_hugepage_filemap() 92 perror(PREFIX ERROR_PREFIX "read failed"); in seek_read_hugepage_filemap() 101 printf(PREFIX PREFIX "actually read 0x%lx bytes of data in total\n", in seek_read_hugepage_filemap() 115 printf(PREFIX PREFIX "expect to read 0x%lx bytes of data in total\n", in read_hugepage_filemap() 120 printf(PREFIX PREFIX "read reach end of the file\n"); in read_hugepage_filemap() [all …]
|
/openbmc/openbmc/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). 19 --prefix=*) 20 prefix="${optval}" 21 + # Distinguish between "prefix not set" and "prefix set to ''" 30 - prefix="${prefix:-/usr/local}" 33 + prefix=/usr/local 37 prefix="${prefix%/}" 39 libdir="${libdir:-${prefix}/lib}" 41 - if [ "${libdir#${prefix}}" = "${libdir}" ]; then 42 - die "Libdir ${libdir} must be a subdirectory of ${prefix}" [all …]
|
/openbmc/qemu/scripts/qapi/ |
H A D | main.py | 24 def invalid_prefix_char(prefix: str) -> Optional[str]: 25 match = must_match(r'([A-Za-z_.-][A-Za-z0-9_.-]*)?', prefix) 26 if match.end() != len(prefix): 27 return prefix[match.end()] 33 prefix: str, 42 :param prefix: Optional C-code prefix for symbol names. 48 assert invalid_prefix_char(prefix) is None 51 gen_types(schema, output_dir, prefix, builtins) 52 gen_visit(schema, output_dir, prefix, builtins) 53 gen_commands(schema, output_dir, prefix, gen_tracing) [all …]
|
/openbmc/linux/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 …]
|
/openbmc/linux/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 …]
|
/openbmc/linux/Documentation/hwmon/ |
H A D | lm90.rst | 8 Prefix: 'lm84' 16 Prefix: 'lm90' 26 Prefix: 'lm89' (no auto-detection) 36 Prefix: 'lm99' 46 Prefix: 'lm86' 56 Prefix: 'adm1020' 64 Prefix: 'adm1021' 72 Prefix: 'adm1023' 80 Prefix: 'adm1032' 90 Prefix: 'adt7461' [all …]
|
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 …]
|
/openbmc/linux/tools/testing/selftests/tc-testing/tc-tests/actions/ |
H A D | xt.json | 4 "name": "Add xt action with log-prefix", 17 "cmdUnderTest": "$TC action add action xt -j LOG --log-prefix PONG index 100", 20 … "matchPattern": "action order [0-9]*:.*target LOG level warning prefix \"PONG\".*index 100 ref", 28 "name": "Replace xt action log-prefix", 41 "$TC action add action xt -j LOG --log-prefix PONG index 1", 47 "cmdUnderTest": "$TC action replace action xt -j LOG --log-prefix WIN index 1", 50 … "matchPattern": "action order [0-9]*:.*target LOG level warning prefix \"WIN\".*index 1 ref", 71 "$TC action add action xt -j LOG --log-prefix PONG index 1000", 80 … "matchPattern": "action order [0-9]*:.*target LOG level warning prefix \"PONG\".*index 1000 ref", 101 "$TC action add action xt -j LOG --log-prefix PONG index 1000", [all …]
|
/openbmc/openbmc/poky/meta/classes-recipe/ |
H A D | scons.bbclass | 18 …${STAGING_BINDIR_NATIVE}/scons --directory=${S} --clean PREFIX=${prefix} prefix=${prefix} ${EXTRA_… 27 …${STAGING_BINDIR_NATIVE}/scons --directory=${S} ${PARALLEL_MAKE} PREFIX=${prefix} prefix=${prefix}… 32 …INDIR_NATIVE}/scons --directory=${S} install_root=${D}${prefix} PREFIX=${prefix} prefix=${prefix} …
|
/openbmc/linux/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 …]
|
/openbmc/qemu/tests/tcg/xtensa/ |
H A D | test_sar.S | 5 .macro test_sar prefix, imm 6 \prefix\()_set \imm 7 \prefix\()_ver \imm 10 .macro tests_sar prefix argument 11 test_sar \prefix, 0 12 test_sar \prefix, 1 13 test_sar \prefix, 2 14 test_sar \prefix, 3 15 test_sar \prefix, 0x1f 16 test_sar \prefix, 0x20 [all …]
|
H A D | test_shift.S | 5 .macro test_shift prefix, dst, src, v, imm 6 \prefix\()_set \dst, \src, \v, \imm 7 \prefix\()_ver \dst, \v, \imm 10 .macro test_shift_sd prefix, v, imm 11 test_shift \prefix, a3, a2, \v, \imm 12 test_shift \prefix, a2, a2, \v, \imm 15 .macro tests_imm_shift prefix, v 16 test_shift_sd \prefix, \v, 1 17 test_shift_sd \prefix, \v, 2 18 test_shift_sd \prefix, \v, 7 [all …]
|
/openbmc/openbmc/poky/meta/recipes-devtools/python/python3-setuptools/ |
H A D | 0001-_distutils-sysconfig.py-make-it-possible-to-substite.patch | 5 prefix to target sysroot 11 meta/recipes-devtools/python/python3/12-distutils-prefix-is-inside-staging-area.patch 26 @@ -121,6 +121,8 @@ def get_python_inc(plat_specific=False, prefix=None): 32 resolved_prefix = prefix if prefix is not None else default_prefix 35 @@ -241,7 +243,13 @@ def get_python_lib(plat_specific=False, standard_lib=False, prefix=None): 37 early_prefix = prefix 39 - if prefix is None: 44 + if prefix is None and os.environ.get('STAGING_LIBDIR', ""): 45 + prefix = os.environ['STAGING_LIBDIR'].rstrip(lib_basename) 46 + elif prefix is None: [all …]
|
/openbmc/openbmc/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} \
|
/openbmc/openbmc/meta-openembedded/meta-networking/recipes-connectivity/tayga/files/ |
H A D | tayga.conf | 25 # This address can safely be located inside the dynamic-pool prefix. 38 # address using ipv4-addr and the NAT64 prefix. 40 # Optional if the NAT64 prefix is specified, otherwise mandatory. It is also 41 # mandatory if the NAT64 prefix is 64:ff9b::/96 and ipv4-addr is a private 48 # The NAT64 prefix. The IPv4 address space is mapped into the IPv6 address 49 # space by prepending this prefix to the IPv4 address. Using a /96 prefix is 53 # This must be a prefix selected from your organization's IPv6 address space 54 # or the Well-Known Prefix 64:ff9b::/96. Note that using the Well-Known 55 # Prefix will prohibit IPv6 hosts from contacting IPv4 hosts that have private 58 # The NAT64 prefix need not be specified if all required address mappings are [all …]
|
/openbmc/openbmc/poky/meta/recipes-extended/ltp/ |
H A D | ltp_20240930.bb | 55 export prefix = "/opt/${PN}" 69 install -d ${D}${prefix}/ 78 rm -rf ${D}${prefix}/bin/STPfailure_report.pl 82 sed -e '/^memcg_stress/d' -i ${D}${prefix}/runtest/controllers 119 …prefix}/* ${prefix}/runtest/* ${prefix}/scenario_groups/* ${prefix}/testcases/bin/* ${prefix}/test… 122 INHIBIT_PACKAGE_STRIP_FILES = "${prefix}/testcases/bin/nm01 ${prefix}/testcases/bin/ldd01"
|
/openbmc/openbmc/poky/meta/recipes-bsp/libacpi/files/ |
H A D | libacpi_fix_for_x32.patch | 18 @mkdir -p ${DESTDIR}${PREFIX}/include 19 @cp -f libacpi.h ${DESTDIR}${PREFIX}/include 20 @chmod 644 ${DESTDIR}${PREFIX}/include/libacpi.h 21 - @echo installing library to ${DESTDIR}${PREFIX}/lib 22 - @mkdir -p ${DESTDIR}${PREFIX}/lib 23 - @cp -f libacpi.a ${DESTDIR}${PREFIX}/lib 24 - @chmod 644 ${DESTDIR}${PREFIX}/lib/libacpi.a 25 - @cp -f ${SONAME} ${DESTDIR}${PREFIX}/lib/ 26 - @chmod 644 ${DESTDIR}${PREFIX}/lib/${SONAME} 27 - @ln -s ${SONAME} ${DESTDIR}${PREFIX}/lib/libacpi.so [all …]
|
/openbmc/openbmc/meta-arm/meta-arm-toolchain/recipes-devtools/external-arm-toolchain/ |
H A D | external-arm-sdk-toolchain.bb | 45 ${prefix}/${EAT_TARGET_SYS}/lib/libstdc++.* \ 46 ${prefix}/${EAT_TARGET_SYS}/lib/libgcc_s.* \ 47 ${prefix}/${EAT_TARGET_SYS}/lib/libsupc++.* \ 48 ${prefix}/${EAT_TARGET_SYS}/include \ 63 ${prefix}/${EAT_TARGET_SYS}/bin/ld* \ 64 ${prefix}/${EAT_TARGET_SYS}/bin/objcopy \ 65 ${prefix}/${EAT_TARGET_SYS}/bin/strip \ 66 ${prefix}/${EAT_TARGET_SYS}/bin/nm \ 67 ${prefix}/${EAT_TARGET_SYS}/bin/ranlib \ 68 ${prefix}/${EAT_TARGET_SYS}/bin/as \ [all …]
|
/openbmc/qemu/qobject/ |
H A D | block-qdict.c | 53 const char *prefix); 55 static void qdict_flatten_qlist(QList *qlist, QDict *target, const char *prefix) in qdict_flatten_qlist() argument 64 /* This function is never called with prefix == NULL, i.e., it is always in qdict_flatten_qlist() 68 assert(prefix); in qdict_flatten_qlist() 76 new_key = g_strdup_printf("%s.%i", prefix, i); in qdict_flatten_qlist() 94 static void qdict_flatten_qdict(QDict *qdict, QDict *target, const char *prefix) in qdict_flatten_qdict() argument 110 if (prefix) { in qdict_flatten_qdict() 111 key = new_key = g_strdup_printf("%s.%s", prefix, entry->key); in qdict_flatten_qdict() 208 * output QList with the key prefix removed, if that prefix is "%u.". If the 211 * QDict with a prefix directly (incrementally) following the last one; it also [all …]
|
/openbmc/openbmc/poky/scripts/ |
H A D | gen-lockedsig-cache | 28 def map_sha_to_files(dir_, prefix, sha_map): argument 29 sstate_prefix_path = dir_ + '/' + prefix + '/' 42 # given a prefix build a map of hash to list of files 43 def build_sha_cache(prefix): argument 47 map_sha_to_files(sstate_dir, prefix, sha_map) 50 map_sha_to_files(native_sstate_dir, prefix, sha_map) 83 prefix = s[:2] variable 85 if prefix not in sstate_content_cache: 86 sstate_content_cache[prefix] = {} 87 if prefix2 not in sstate_content_cache[prefix]: [all …]
|