/openbmc/openbmc/meta-security/recipes-ids/ossec/files/ |
H A D | 0002-Makefile-don-t-set-uid-gid.patch | 6 Upstream-Status: Inappropriate [embedded specific] 8 Signed-off-by: Armin Kuster <akuster808@gmail.com> 9 --- 10 src/Makefile | 166 +++++++++++++++++++++++++-------------------------- 11 1 file changed, 83 insertions(+), 83 deletions(-) 13 diff --git a/src/Makefile b/src/Makefile 15 --- a/src/Makefile 17 @@ -21,7 +21,7 @@ OSSEC_USER?=ossec 21 -INSTALL_CMD?=install -m $(1) -o $(2) -g $(3) 22 +INSTALL_CMD?=install -m $(1) [all …]
|
/openbmc/linux/tools/power/pm-graph/ |
H A D | Makefile | 1 # SPDX-License-Identifier: GPL-2.0 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 [all …]
|
/openbmc/qemu/scripts/ |
H A D | mtest2make.py | 20 return [base if speed == 'quick' else f'{base}-{speed}' for speed in self.speeds] 26 .speed.quick = $(foreach s,$(sort $(filter-out %-slow %-thorough, $1)), --suite $s) 27 .speed.slow = $(foreach s,$(sort $(filter-out %-thorough, $1)), --suite $s) 28 .speed.thorough = $(foreach s,$(sort $1), --suite $s) 31 .mtestargs = --no-rebuild -t $(TIMEOUT_MULTIPLIER) 33 .mtestargs += --setup $(SPEED) 35 .mtestargs += $(subst -j,--num-processes , $(filter-out -j, $(lastword -j1 $(filter -j%, $(MAKEFLAG… 37 .check.mtestargs = $(MTESTARGS) $(.mtestargs) $(if $(V),--verbose,--print-errorlogs) 38 .bench.mtestargs = $(MTESTARGS) $(.mtestargs) --benchmark --verbose''') 60 if s.endswith('-slow'): [all …]
|
/openbmc/qemu/block/ |
H A D | crypto.h | 4 * Copyright (c) 2015-2017 Red Hat, Inc. 24 #define BLOCK_CRYPTO_OPT_DEF_KEY_SECRET(prefix, helpstr) \ argument 26 .name = prefix BLOCK_CRYPTO_OPT_QCOW_KEY_SECRET, \ 31 #define BLOCK_CRYPTO_OPT_QCOW_KEY_SECRET "key-secret" 33 #define BLOCK_CRYPTO_OPT_DEF_QCOW_KEY_SECRET(prefix) \ argument 34 BLOCK_CRYPTO_OPT_DEF_KEY_SECRET(prefix, \ 37 #define BLOCK_CRYPTO_OPT_LUKS_KEY_SECRET "key-secret" 38 #define BLOCK_CRYPTO_OPT_LUKS_CIPHER_ALG "cipher-alg" 39 #define BLOCK_CRYPTO_OPT_LUKS_CIPHER_MODE "cipher-mode" 40 #define BLOCK_CRYPTO_OPT_LUKS_IVGEN_ALG "ivgen-alg" [all …]
|
/openbmc/linux/lib/zstd/common/ |
H A D | error_private.c | 5 * This source code is licensed under both the BSD-style license (found in the 8 * You may select, at your option, one of the above-listed licenses. 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() [all …]
|
/openbmc/linux/tools/testing/selftests/mm/ |
H A D | hugetlb-read-hwpoison.c | 1 // SPDX-License-Identifier: GPL-2.0 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() [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). 8 Upstream-Status: Pending 9 --- 10 build/make/configure.sh | 20 ++++++++++++++++---- 11 1 file changed, 16 insertions(+), 4 deletions(-) 13 diff --git a/build/make/configure.sh b/build/make/configure.sh 15 --- a/build/make/configure.sh 17 @@ -699,6 +699,8 @@ process_common_cmdline() { 19 --prefix=*) 20 prefix="${optval}" [all …]
|
/openbmc/qemu/scripts/qapi/ |
H A D | main.py | 2 # See the COPYING file in the top-level directory. 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, 36 gen_tracing: bool = False) -> None: 42 :param prefix: Optional C-code prefix for symbol names. 43 :param unmask: Expose non-ABI names through introspection? 44 :param builtins: Generate code for built-in types? [all …]
|
/openbmc/linux/Documentation/hwmon/ |
H A D | lm90.rst | 8 Prefix: 'lm84' 10 Addresses scanned: I2C 0x18 - 0x1a, 0x29 - 0x2b, 0x4c - 0x4e 16 Prefix: 'lm90' 26 Prefix: 'lm89' (no auto-detection) 36 Prefix: 'lm99' 46 Prefix: 'lm86' 56 Prefix: 'adm1020' 58 Addresses scanned: I2C 0x4c - 0x4e 64 Prefix: 'adm1021' 66 Addresses scanned: I2C 0x18 - 0x1a, 0x29 - 0x2b, 0x4c - 0x4e [all …]
|
H A D | isl68137.rst | 8 Prefix: 'isl68137' 10 Addresses scanned: - 19 Prefix: 'isl68220' 21 Addresses scanned: - 29 Prefix: 'isl68221' 31 Addresses scanned: - 39 Prefix: 'isl68222' 41 Addresses scanned: - 49 Prefix: 'isl68223' 51 Addresses scanned: - [all …]
|
H A D | ltc2978.rst | 8 Prefix: 'ltc2972' 10 Addresses scanned: - 16 Prefix: 'ltc2974' 18 Addresses scanned: - 24 Prefix: 'ltc2975' 26 Addresses scanned: - 32 Prefix: 'ltc2977' 34 Addresses scanned: - 40 Prefix: 'ltc2978' 42 Addresses scanned: - [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/linux/drivers/regulator/ |
H A D | mc13xxx.h | 1 /* SPDX-License-Identifier: GPL-2.0-or-later */ 3 * mc13xxx.h - regulators for the Freescale mc13xxx PMIC 41 return -ENODEV; in mc13xxx_get_num_regulators_dt() 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,\ [all …]
|
/openbmc/linux/drivers/firmware/broadcom/ |
H A D | bcm47xx_sprom.c | 6 * Copyright (C) 2010-2012 Hauke Mehrtens <hauke@hauke-m.de> 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, \ [all …]
|
/openbmc/openbmc/poky/meta/classes-recipe/ |
H A D | scons.bbclass | 4 # SPDX-License-Identifier: MIT 9 DEPENDS += "python3-scons-native" 16 if [ -n "${CONFIGURESTAMPFILE}" -a "${S}" = "${B}" ]; then 17 …if [ -e "${CONFIGURESTAMPFILE}" -a "`cat ${CONFIGURESTAMPFILE}`" != "${BB_TASKHASH}" -a "${CLEANBR… 18 …${STAGING_BINDIR_NATIVE}/scons --directory=${S} --clean PREFIX=${prefix} prefix=${prefix} ${EXTRA_… 21 mkdir -p `dirname ${CONFIGURESTAMPFILE}` 27 …${STAGING_BINDIR_NATIVE}/scons --directory=${S} ${PARALLEL_MAKE} PREFIX=${prefix} prefix=${prefix}… 32 …${STAGING_BINDIR_NATIVE}/scons --directory=${S} install_root=${D}${prefix} PREFIX=${prefix} prefix…
|
/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 16 Upstream-Status: Inappropriate [oe-core specific] 17 Signed-off-by: Alexander Kanavin <alex@linutronix.de> 18 --- 19 setuptools/_distutils/sysconfig.py | 12 ++++++++++-- 20 1 file changed, 10 insertions(+), 2 deletions(-) 22 diff --git a/setuptools/_distutils/sysconfig.py b/setuptools/_distutils/sysconfig.py 24 --- a/setuptools/_distutils/sysconfig.py 26 @@ -121,6 +121,8 @@ def get_python_inc(plat_specific=False, prefix=None): [all …]
|
/openbmc/linux/drivers/usb/gadget/function/ |
H A D | f_mass_storage.h | 1 /* SPDX-License-Identifier: GPL-2.0 */ 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, \ [all …]
|
/openbmc/openbmc/poky/meta/recipes-kernel/systemtap/systemtap/ |
H A D | 0001-Install-python-modules-to-correct-library-dir.patch | 6 Upstream-Status: Inappropriate [oe-core specific] 7 Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com> 9 Add OE's CFLAGS which contains `-fdebug-prefix-map' options to 12 Supply "--root" directory to the "install" command, and use 13 it as a prefix to strip off the purported filename encoded 14 in bytecode files. (It strips build path prefix from .pyc files) 16 Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com> 17 --- 18 python/Makefile.am | 8 ++++++-- 19 1 file changed, 6 insertions(+), 2 deletions(-) [all …]
|
/openbmc/openbmc/poky/meta/recipes-extended/ltp/ |
H A D | ltp_20240930.bb | 3 HOMEPAGE = "https://linux-test-project.github.io/" 5 LICENSE = "GPL-2.0-only & GPL-2.0-or-later & LGPL-2.0-or-later & LGPL-2.1-or-later & BSD-2-Clause" 9 file://testcases/network/can/filter-tests/COPYING;md5=5b155ea7d7f86eae8e8832955d8b70bc \ 12 DEPENDS = "attr libaio libcap acl openssl zip-native" 13 DEPENDS:append:libc-musl = " fts " 14 EXTRA_OEMAKE:append:libc-musl = " LIBC=musl " 15 EXTRA_OECONF:append:libc-musl = " LIBS=-lfts " 17 # since ltp contains x86-64 assembler which uses the frame-pointer register, 18 # set -fomit-frame-pointer x86-64 to handle cases where optimisation 19 # is set to -O0 or frame pointers have been enabled by -fno-omit-frame-pointer [all …]
|
/openbmc/openbmc/meta-openembedded/meta-networking/recipes-connectivity/tayga/files/ |
H A D | tayga.conf | 12 # `tayga --mktun`. This allows routing and firewall rules to be set up prior 17 tun-device nat64 25 # This address can safely be located inside the dynamic-pool prefix. 29 ipv4-addr 192.168.254.1 37 # You can leave ipv6-addr unspecified and TAYGA will construct its IPv6 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 44 #ipv6-addr 2001:db8:1::2 45 ipv6-addr fdaa:bb:1::1 [all …]
|
/openbmc/openbmc/poky/meta/recipes-bsp/libacpi/files/ |
H A D | libacpi_fix_for_x32.patch | 1 Upstream-Status: Inactive-Upstream [last release before 2008, no vcs] 11 Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com> 2011/12/05 13 Index: libacpi-0.2/Makefile 15 --- libacpi-0.2.orig/Makefile 16 +++ libacpi-0.2/Makefile 17 @@ -42,13 +42,13 @@ install: all 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 [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/qemu/qobject/ |
H A D | block-qdict.c | 4 * Copyright (c) 2013-2018 Red Hat, Inc. 7 * See the COPYING.LIB file in the top-level directory. 16 #include "qapi/qobject-input-visitor.h" 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() 79 * Flatten non-empty QDict and QList recursively into @target, in qdict_flatten_qlist() 94 static void qdict_flatten_qdict(QDict *qdict, QDict *target, const char *prefix) in qdict_flatten_qdict() argument [all …]
|
/openbmc/openbmc/poky/meta/recipes-devtools/pseudo/ |
H A D | pseudo.inc | 3 # BBFETCH2=True PSEUDO_BUILD=1 ../bitbake/bin/bitbake pseudo-native [-c CMD] 10 LICENSE = "LGPL-2.1-only" 13 FILES:${PN} = "${prefix}/lib/pseudo/lib*/libpseudo.so ${bindir}/* ${localstatedir}/pseudo ${prefix}… 15 INSANE_SKIP:${PN}-dbg += "libdir" 20 MAKEOPTS:class-native = "'RPATH=-Wl,--rpath=XORIGIN/../../../sqlite3-native/usr/lib/'" 29 NO32LIBS:class-nativesdk = "1" 31 PSEUDO_EXTRA_OPTS ?= "--enable-force-async --without-passwd-fallback --enable-epoll --enable-xattr" 36 …--prefix=${prefix} --libdir=${prefix}/lib/pseudo/lib${SITEINFO_BITS} --with-sqlite-lib=${baselib} … 38 …--prefix=${prefix} --libdir=${prefix}/lib/pseudo/lib --with-sqlite-lib=${baselib} --with-sqlite=${… 45 # We probably don't need to build 32-bit binaries. [all …]
|