/openbmc/qemu/scripts/ |
H A D | update-linux-headers.sh | 3 # Update Linux kernel headers QEMU requires from a specified kernel tree. 13 # The script will copy the headers into two target folders: 15 # - linux-headers/ for files that are required for compiling for a 17 # and defines that are more recent than the headers that might be 19 # file copies for these headers. 21 # - include/standard-headers/ for files that are used for guest 24 # kernel headers, but we need those definitions regardless of which 26 # sanitize the headers to remove any use of Linux-specifics such as 30 hdrdir="$tmpdir/headers" 37 usage: update-kernel-headers.sh LINUX_PATH [OUTPUT_PATH] [all …]
|
/openbmc/openbmc-test-automation/lib/ |
H A D | redfish_request.py | 67 def request_login(self, headers, url, credential, timeout=10): argument 72 headers By default headers is assigned as application/json. 73 If user assign the headers, 74 then default headers is not considered. 86 if headers == "None": 87 headers = dict() 88 headers["Content-Type"] = "application/json" 101 self, headers=headers, url=url, data=credential 106 def request_get(self, headers, url, timeout=10, verify=False): argument 111 headers By default headers is assigned as application/json. [all …]
|
H A D | rest_client.robot | 46 ${headers}= Create Dictionary X-Auth-Token=${XAUTH_TOKEN} Accept=application/json 47 Set To Dictionary ${kwargs} headers ${headers} 72 ${headers}= Create Dictionary Content-Type=application/json 74 Set To Dictionary ${kwargs} headers ${headers} 97 ${headers}= Create Dictionary Content-Type=application/json 100 ${resp}= PUT On Session openbmc ${base_uri} json=${kwargs["data"]} headers=${headers} 121 ${headers}= Create Dictionary Content-Type=application/json 123 Set To Dictionary ${kwargs} headers ${headers} 166 ${headers}= Create Dictionary Content-Type=application/json 169 ${resp}= POST On Session openbmc /login json=${data} headers=${headers} [all …]
|
/openbmc/linux/scripts/ |
H A D | Makefile.headersinst | 3 # Installing headers 5 # All headers under include/uapi, include/generated/uapi, 29 src-headers := $(if $(src-subdirs), $(shell cd $(src) && find $(src-subdirs) -name '*.h')) 30 src-headers := $(filter-out $(no-export-headers), $(src-headers)) 31 gen-headers := $(if $(gen-subdirs), $(shell cd $(gen) && find $(gen-subdirs) -name '*.h')) 32 gen-headers := $(filter-out $(no-export-headers), $(gen-headers)) 36 duplicated := $(filter $(gen-headers), $(src-headers)) 39 gen-headers := $(filter-out $(duplicated), $(gen-headers)) 43 src-headers := $(addprefix $(dst)/, $(src-headers)) 44 gen-headers := $(addprefix $(dst)/, $(gen-headers)) [all …]
|
/openbmc/phosphor-misc/http-redirect/ |
H A D | test.awk | 12 function reportfail(resultfile, expect, request, headers) 21 for (h in headers) 22 print("headers:" headers[h]) 28 function test(code, expect, request, headers) 30 runtest(cmd, request, headers) 31 result = check(resultfile, code, expect, request, headers) 34 reportfail(resultfile, expect, request, headers) 37 function check(resultfile, code, expect, request, headers) 56 function runtest(cmd, request, headers, h, OORS) 64 for (h in headers) [all …]
|
/openbmc/openbmc/poky/meta/recipes-core/glibc/glibc/ |
H A D | 0011-eglibc-Help-bootstrap-cross-toolchain.patch | 10 * Makefile (install-headers): Preserve old behavior: depend on 11 $(inst_includedir)/gnu/stubs.h only if install-bootstrap-headers 16 * Makefile: Amend make install-headers to install everything 18 part of 'install-headers', not 'install-others'. 19 If install-bootstrap-headers is 'yes', install a dummy copy of 43 +# other headers, so 'make install-headers' produces a useable include 46 +ifeq ($(install-bootstrap-headers),yes) 47 +install-headers: $(inst_includedir)/gnu/stubs.h 53 headers += gnu/lib-names.h 62 +ifeq ($(install-bootstrap-headers),yes) [all …]
|
/openbmc/openbmc/meta-openembedded/meta-networking/recipes-connectivity/samba/samba/ |
H A D | 0004-Add-options-to-configure-the-use-of-libbsd.patch | 46 - if conf.CHECK_FUNCS_IN('strlcpy strlcat', 'bsd', headers='bsd/string.h', 50 - conf.CHECK_FUNCS_IN('getpeereid', 'bsd', headers='sys/types.h bsd/unistd.h') 51 - if not conf.CHECK_FUNCS_IN('setproctitle', 'setproctitle', headers='setproctitle.h'): 52 - conf.CHECK_FUNCS_IN('setproctitle', 'bsd', headers='sys/types.h bsd/unistd.h') 54 - conf.CHECK_FUNCS_IN('setproctitle_init', 'bsd', headers='sys/types.h bsd/unistd.h') 57 - conf.CHECK_FUNCS_IN('closefrom', 'bsd', headers='bsd/unistd.h') 61 + if conf.CHECK_FUNCS_IN('strlcpy strlcat', 'bsd', headers='bsd/string.h', 65 + conf.CHECK_FUNCS_IN('getpeereid', 'bsd', headers='sys/types.h bsd/unistd.h') 66 + if not conf.CHECK_FUNCS_IN('setproctitle', 'setproctitle', headers='setproctitle.h'): 67 + conf.CHECK_FUNCS_IN('setproctitle', 'bsd', headers='sys/types.h bsd/unistd.h') [all …]
|
/openbmc/linux/Documentation/kbuild/ |
H A D | headers_install.rst | 2 Exporting kernel headers for use by userspace 13 from the "linux" subdirectory. The system's libc headers are usually 14 installed at the default location /usr/include and the kernel headers in 18 Kernel headers are backwards compatible, but not forwards compatible. This 19 means that a program built against a C library using older kernel headers 21 features), but a program built against newer kernel headers may not work on an 30 ARCH indicates which architecture to produce headers for, and defaults to the 31 current architecture. The linux/asm directory of the exported kernel headers 37 INSTALL_HDR_PATH indicates where to install the headers. It defaults to 41 headers are installed in 'INSTALL_HDR_PATH/include'.
|
/openbmc/linux/drivers/net/ethernet/intel/ice/ |
H A D | ice_tc_lib.c | 15 * @headers: Pointer to TC flower filter header structure 21 ice_tc_count_lkups(u32 flags, struct ice_tc_flower_lyr_2_4_hdrs *headers, in ice_tc_count_lkups() argument 348 * TC flower headers. This list should be used to add 358 struct ice_tc_flower_lyr_2_4_hdrs *headers = &tc_fltr->outer_headers; in ice_tc_fill_rules() local 377 headers = &tc_fltr->inner_headers; in ice_tc_fill_rules() 383 list[i].h_u.ethertype.ethtype_id = headers->l2_key.n_proto; in ice_tc_fill_rules() 384 list[i].m_u.ethertype.ethtype_id = headers->l2_mask.n_proto; in ice_tc_fill_rules() 392 l2_key = &headers->l2_key; in ice_tc_fill_rules() 393 l2_mask = &headers->l2_mask; in ice_tc_fill_rules() 419 list[i].h_u.vlan_hdr.vlan = headers->vlan_hdr.vlan_id; in ice_tc_fill_rules() [all …]
|
/openbmc/linux/tools/include/nolibc/ |
H A D | Makefile | 47 # install all headers needed to support a bare-metal compiler 48 all: headers 54 @echo " all call \"headers\"" 56 @echo " headers prepare a sysroot in tools/include/nolibc/sysroot" 57 @echo " headers_standalone like \"headers\", and also install kernel headers" 68 headers: target 86 headers_standalone: headers 87 $(Q)$(MAKE) -C $(srctree) headers
|
/openbmc/linux/tools/testing/selftests/bpf/progs/ |
H A D | test_assign_reuse.c | 22 } headers; variable 39 if (ctx->data + sizeof(headers.tcp) > ctx->data_end) in reuse_accept() 42 if (__builtin_memcmp(&headers.tcp, ctx->data, sizeof(headers.tcp)) != 0) in reuse_accept() 45 if (ctx->data + sizeof(headers.udp) > ctx->data_end) in reuse_accept() 48 if (__builtin_memcmp(&headers.udp, ctx->data, sizeof(headers.udp)) != 0) in reuse_accept() 89 __builtin_memcpy(&headers.tcp, th, sizeof(headers.tcp)); in maybe_assign_tcp() 102 __builtin_memcpy(&headers.udp, uh, sizeof(headers.udp)); in maybe_assign_udp()
|
/openbmc/openbmc-test-automation/redfish/service_root/ |
H A D | test_service_root.robot | 65 ${headers}= Create Dictionary Content-Type=application/json 69 ... openbmc /redfish/v1/SessionService/Sessions headers=${headers} 111 ${headers}= Create Dictionary Content-Type=application/json 114 …}= POST On Session openbmc /redfish/v1/SessionService/Sessions data=${data} headers=${headers} 117 ${headers}= Create Dictionary Content-Type=application/json 118 ... X-Auth-Token=${resp.headers["X-Auth-Token"]} 119 …{resp}= DELETE On Session openbmc ${REDFISH_SESSION}${/}${resp.json()["Id"]} headers=${headers}
|
H A D | test_service_root_security.robot | 49 ${headers}= Create Dictionary Content-Type=application/json 53 ... data=${data} headers=${headers} 64 ${headers}= Create Dictionary Content-Type=application/json 68 ... data=${data} headers=${headers} 137 # The getheaders() method returns the headers as a list of tuples: 138 # headers: 154 ${headers}= Key Value List To Dict ${resp.getheaders()} 155 Rprint Vars headers fmt=1 157 Dictionary Should Contain Sub Dictionary ${headers} ${header_requirements}
|
/openbmc/linux/tools/perf/scripts/python/ |
H A D | sched-migration.py | 333 def sched_switch(self, headers, prev_comm, prev_pid, prev_prio, prev_state, argument 338 on_cpu_task = self.current_tsk[headers.cpu] 342 headers.ts_format(), headers.cpu, prev_comm, prev_pid, next_comm, next_pid) 346 self.current_tsk[headers.cpu] = next_pid 348 ts = self.timeslices.get_time_slice(headers.ts()) 349 ts.sched_switch(self.timeslices, prev_pid, prev_state, next_pid, headers.cpu) 351 def migrate(self, headers, pid, prio, orig_cpu, dest_cpu): argument 352 ts = self.timeslices.get_time_slice(headers.ts()) 355 def wake_up(self, headers, comm, pid, success, target_cpu, fork): argument 358 ts = self.timeslices.get_time_slice(headers.ts()) [all …]
|
/openbmc/openbmc/meta-openembedded/meta-gnome/recipes-graphics/cogl/cogl-1.0/ |
H A D | 0001-configure.ac-don-t-require-eglmesaext.h.patch | 12 fixes commit fb1acfec ("Fix building against libglvnd-provided EGL headers") 32 - [AC_MSG_ERROR([Unable to locate required EGL headers])]) 36 - [AC_MSG_ERROR([Unable to locate required EGL headers])], 41 - [AC_MSG_ERROR([Unable to locate required EGL headers])], 55 +dnl Test for the existence of egl headers. 57 +dnl In that case AC_CHECK_HEADERS failes if X11 headers are not available. 60 +dnl require additional headers. 64 + [AC_MSG_ERROR([Unable to locate required EGL headers])], 72 + [AC_MSG_ERROR([Unable to locate required EGL headers])],
|
/openbmc/linux/Documentation/userspace-api/media/v4l/ |
H A D | metafmt-uvc.rst | 15 This format describes standard UVC metadata, extracted from UVC packet headers 19 in those headers. See section "2.4.3.3 Video and Still Image Payload Headers" of 23 contain multiple headers, if multiple such headers have been transmitted by the 24 camera for the respective frame. However, the driver may drop headers when the 27 perform rate limiting when the device sends a large number of headers.
|
/openbmc/openbmc/meta-openembedded/meta-networking/recipes-support/libtalloc/libtalloc/ |
H A D | 0001-talloc-Add-configure-options-for-packages.patch | 103 if not conf.CHECK_DECLS('malloc', headers='stdlib.h'): 124 - if conf.CHECK_FUNCS_IN('strlcpy strlcat', 'bsd', headers='bsd/string.h', 132 - # headers to replace.h. 139 - conf.CHECK_FUNCS_IN('getpeereid', 'bsd', headers='sys/types.h bsd/unistd.h') 140 - if not conf.CHECK_FUNCS_IN('setproctitle', 'setproctitle', headers='setproctitle.h'): 141 - conf.CHECK_FUNCS_IN('setproctitle', 'bsd', headers='sys/types.h bsd/unistd.h') 143 - conf.CHECK_FUNCS_IN('setproctitle_init', 'bsd', headers='sys/types.h bsd/unistd.h') 146 - conf.CHECK_FUNCS_IN('closefrom', 'bsd', headers='bsd/unistd.h') 150 + if conf.CHECK_FUNCS_IN('strlcpy strlcat', 'bsd', headers='bsd/string.h', 158 + # headers to replace.h. [all …]
|
/openbmc/linux/drivers/scsi/aacraid/ |
H A D | comminit.c | 231 * Align the beginning of Headers to commalign in aac_alloc_comm() 237 * Fill in addresses of the Comm Area Headers and Queues in aac_alloc_comm() 268 q->headers.producer = (__le32 *)mem; in aac_queue_init() 269 q->headers.consumer = (__le32 *)(mem+1); in aac_queue_init() 270 *(q->headers.producer) = cpu_to_le32(qsize); in aac_queue_init() 271 *(q->headers.consumer) = cpu_to_le32(qsize); in aac_queue_init() 372 u32 *headers; in aac_comm_init() local 386 * queue headers. in aac_comm_init() 391 if (!aac_alloc_comm(dev, (void * *)&headers, size, QUEUE_ALIGNMENT)) in aac_comm_init() 394 queues = (struct aac_entry *)(((ulong)headers) + hdrsize); in aac_comm_init() [all …]
|
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-test/cunit/files/ |
H A D | fixup-install-docdir.patch | 15 diff -uNr a/doc/headers/Makefile.am b/doc/headers/Makefile.am 16 --- a/doc/headers/Makefile.am 2014-10-30 22:06:29.704574162 +0100 17 +++ b/doc/headers/Makefile.am 2014-10-30 22:07:43.578524791 +0100 21 -dochdrdir = $(prefix)/doc/@PACKAGE@/headers 22 +dochdrdir = $(docdir)/headers
|
/openbmc/openbmc/meta-openembedded/meta-networking/recipes-support/libtevent/libtevent/ |
H A D | 0001-Add-configure-options-for-packages.patch | 119 - if conf.CHECK_FUNCS_IN('strlcpy strlcat', 'bsd', headers='bsd/string.h', 127 - # headers to replace.h. 134 - conf.CHECK_FUNCS_IN('getpeereid', 'bsd', headers='sys/types.h bsd/unistd.h') 135 - if not conf.CHECK_FUNCS_IN('setproctitle', 'setproctitle', headers='setproctitle.h'): 136 - conf.CHECK_FUNCS_IN('setproctitle', 'bsd', headers='sys/types.h bsd/unistd.h') 138 - conf.CHECK_FUNCS_IN('setproctitle_init', 'bsd', headers='sys/types.h bsd/unistd.h') 141 - conf.CHECK_FUNCS_IN('closefrom', 'bsd', headers='bsd/unistd.h') 145 + if conf.CHECK_FUNCS_IN('strlcpy strlcat', 'bsd', headers='bsd/string.h', 153 + # headers to replace.h. 160 + conf.CHECK_FUNCS_IN('getpeereid', 'bsd', headers='sys/types.h bsd/unistd.h') [all …]
|
/openbmc/openbmc/meta-openembedded/meta-networking/recipes-support/libtdb/libtdb/ |
H A D | 0001-tdb-Add-configure-options-for-packages.patch | 115 - if conf.CHECK_FUNCS_IN('strlcpy strlcat', 'bsd', headers='bsd/string.h', 123 - # headers to replace.h. 130 - conf.CHECK_FUNCS_IN('getpeereid', 'bsd', headers='sys/types.h bsd/unistd.h') 131 - if not conf.CHECK_FUNCS_IN('setproctitle', 'setproctitle', headers='setproctitle.h'): 132 - conf.CHECK_FUNCS_IN('setproctitle', 'bsd', headers='sys/types.h bsd/unistd.h') 134 - conf.CHECK_FUNCS_IN('setproctitle_init', 'bsd', headers='sys/types.h bsd/unistd.h') 137 - conf.CHECK_FUNCS_IN('closefrom', 'bsd', headers='bsd/unistd.h') 141 + if conf.CHECK_FUNCS_IN('strlcpy strlcat', 'bsd', headers='bsd/string.h', 149 + # headers to replace.h. 156 + conf.CHECK_FUNCS_IN('getpeereid', 'bsd', headers='sys/types.h bsd/unistd.h') [all …]
|
/openbmc/linux/Documentation/networking/ |
H A D | segmentation-offloads.rst | 69 contain additional headers such as an outer tunnel. In order to account 73 cases where there are more than just 1 set of headers. For example in the 74 case of IPIP and SIT we should have the network and transport headers moved 75 from the standard list of headers to "inner" header offsets. 77 Currently only two levels of headers are supported. The convention is to 78 refer to the tunnel headers as the outer headers, while the encapsulated 79 data is normally referred to as the inner headers. Below is the list of 80 calls to access the given headers: 103 headers will be left with a partial checksum and only the outer header 138 so that instead of having to rewrite the packet headers for each segment [all …]
|
/openbmc/openbmc/meta-openembedded/meta-networking/recipes-support/libldb/libldb/ |
H A D | 0002-ldb-Add-configure-options-for-packages.patch | 114 - if conf.CHECK_FUNCS_IN('strlcpy strlcat', 'bsd', headers='bsd/string.h', 118 - conf.CHECK_FUNCS_IN('getpeereid', 'bsd', headers='sys/types.h bsd/unistd.h') 119 - if not conf.CHECK_FUNCS_IN('setproctitle', 'setproctitle', headers='setproctitle.h'): 120 - conf.CHECK_FUNCS_IN('setproctitle', 'bsd', headers='sys/types.h bsd/unistd.h') 122 - conf.CHECK_FUNCS_IN('setproctitle_init', 'bsd', headers='sys/types.h bsd/unistd.h') 125 - conf.CHECK_FUNCS_IN('closefrom', 'bsd', headers='bsd/unistd.h') 129 + if conf.CHECK_FUNCS_IN('strlcpy strlcat', 'bsd', headers='bsd/string.h', 133 + conf.CHECK_FUNCS_IN('getpeereid', 'bsd', headers='sys/types.h bsd/unistd.h') 134 + if not conf.CHECK_FUNCS_IN('setproctitle', 'setproctitle', headers='setproctitle.h'): 135 + conf.CHECK_FUNCS_IN('setproctitle', 'bsd', headers='sys/types.h bsd/unistd.h') [all …]
|
/openbmc/linux/include/uapi/linux/ |
H A D | libc-compat.h | 13 * * Synchronize the UAPI header and the libc headers so either one can be 37 * This fixes the situation where the linux headers are included *after* the 38 * libc headers. To fix the problem with the inclusion in the other order the 39 * userspace libc headers must be fixed like this: 52 /* We have included glibc headers... */ 58 /* GLIBC headers included first so don't define anything 74 /* Linux headers included first, and we must define everything 92 /* GLIBC headers included first so don't define anything 120 /* Linux headers included first, and we must define everything 169 /* If we did not see any headers from any supported C libraries,
|
/openbmc/openbmc/poky/meta/recipes-graphics/vulkan/ |
H A D | vulkan-headers_1.3.296.0.bb | 4 games and interactive media. This package contains the development headers \ 7 BUGTRACKER = "https://github.com/KhronosGroup/Vulkan-Headers" 12 SRC_URI = "git://github.com/KhronosGroup/Vulkan-Headers.git;branch=main;protocol=https" 24 # glslang, vulkan-headers, vulkan-loader, vulkan-tools, spirv-headers, spirv-tools,
|