Home
last modified time | relevance | path

Searched +full:do +full:- +full:not +full:- +full:merge (Results 1 – 25 of 84) sorted by relevance

1234

/Zephyr-latest/.github/workflows/
Ddo_not_merge.yml1 name: Do Not Merge
8 do-not-merge:
10 runs-on: ubuntu-22.04
12 - name: Check for label
16 contains(github.event.*.labels.*.name, 'dev-review') }}
18 echo "Pull request is labeled as 'DNM', 'TSC', 'Architecture Review' or 'dev-review'."
Dready-to-merge.yml1 name: ready to merge
13 runs-on: ubuntu-latest
15 - name: "Check status of all required jobs"
16 run: |-
18 JOB_IDS=$(echo "$NEEDS_CONTEXT" | jq -r 'keys[]')
19 for JOB_ID in $JOB_IDS; do
20 RESULT=$(echo "$NEEDS_CONTEXT" | jq -r ".[\"$JOB_ID\"].result")
24 echo "Error: The $JOB_ID job did not pass."
Dcompliance.yml6 - edited
7 - opened
8 - reopened
9 - synchronize
13 runs-on: ubuntu-22.04
16 - name: Update PATH for west
20 - name: Checkout the code
24 fetch-depth: 0
26 - name: Rebase onto the target branch
30 git config --global user.email "you@example.com"
[all …]
/Zephyr-latest/doc/services/device_mgmt/
Dmcumgr_backporting.rst15 The upstream MCUmgr repository is located `in this page <https://github.com/apache/mynewt-mcumgr>`_.
16 The Zephyr fork used in version 2.7 and earlier is `located here <https://github.com/zephyrproject-
17 …rary that is `part of the Zephyr code base <https://github.com/zephyrproject-rtos/zephyr/tree/main…
27 … done directly to the Zephyr held code of the MCUmgr library, is backported to the ``v2.7-branch``.
28 … ported to the Zephyr held code from the upstream repository, is backported to the ``v2.7-branch``.
30 to the ``v2.7-branch``.
31 * The fix, not present upstream and not relevant for the current version of Zephyr, is
32 directly applied to the ``v2.7-branch``.
56 You must also apply the ``backport v2.7-branch`` label to the bug report.
61 You can either create a *backport pull request* or a *new-fix pull request*.
[all …]
/Zephyr-latest/include/zephyr/xen/public/hvm/
Dparams.h1 /* SPDX-License-Identifier: MIT */
7 * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
9 * furnished to do so, subject to the following conditions:
15 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
31 * These are not used by Xen. They are here for convenience of HVM-guest
Dhvm_op.h1 /* SPDX-License-Identifier: MIT */
7 * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
9 * furnished to do so, subject to the following conditions:
15 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
/Zephyr-latest/soc/altr/qemu_nios2/include/
Dlinker.h2 * linker.h - Linker script mapping information
11 * DO NOT MODIFY THIS FILE
15 * system. If you do modify this file, be aware that your
19 * DO NOT MODIFY THIS FILE
32 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
34 * Software is furnished to do so, subject to the following conditions:
40 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
Dsystem.h2 * DO NOT MODIFY THIS FILE
6 * system. If you do modify this file, be aware that your
10 * DO NOT MODIFY THIS FILE
23 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
25 * Software is furnished to do so, subject to the following conditions:
31 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
173 #define ONCHIP_FLASH_0_CSR_IRQ -1
174 #define ONCHIP_FLASH_0_CSR_IRQ_INTERRUPT_CONTROLLER_ID -1
204 #define ONCHIP_FLASH_0_DATA_IRQ -1
205 #define ONCHIP_FLASH_0_DATA_IRQ_INTERRUPT_CONTROLLER_ID -1
[all …]
/Zephyr-latest/soc/altr/zephyr_nios2f/include/
Dlinker.h2 * linker.h - Linker script mapping information
11 * DO NOT MODIFY THIS FILE
15 * system. If you do modify this file, be aware that your
19 * DO NOT MODIFY THIS FILE
32 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
34 * Software is furnished to do so, subject to the following conditions:
40 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
/Zephyr-latest/doc/project/
Ddev_env_and_tools.rst1 .. _dev-environment-and-tools:
26 release managers are allowed to merge a pull request into the main branch once
31 Give reviewers time to review before code merge
34 The Zephyr project is a global project that is not tied to a certain geography
39 changes do require reviews by subject matter experts and owners of the subsystem
41 addressed with general reviews and do not need to be queued for a maintainer or
42 code-owner review. Additionally, some changes might require further discussions
50 :figclass: align-center
55 ---------
57 - An author of a change can suggest in his pull-request which category a change
[all …]
Dproject_roles.rst51 (https://github.com/zephyrproject-rtos/zephyr/blob/main/CODE_OF_CONDUCT.md)
54 ….github.com/en/organizations/managing-access-to-your-organizations-repositories/repository-permiss…
56 Contributors are not allowed to assign reviewers to their own pull requests. An
70 Contributor change requests or approval on pull requests are not counted with
101 be addressed by the original submitter. In cases where the changes requested do
102 not follow the :ref:`expectations <reviewer-expectations>` and the guidelines
107 approvals needed to merge a PR. Other criteria for merging may apply.
141 required approvals needed to merge a PR. Other criteria for merging may apply.
167 the latter is not possible.
170 * Right to dismiss stale and unrelated reviews or reviews not following
[all …]
/Zephyr-latest/drivers/i2c/
Di2c_numaker.c4 * SPDX-License-Identifier: Apache-2.0
18 #include "i2c-priv.h"
93 /* ACK/NACK last data byte, dependent on whether or not message merge is allowed */
96 const struct i2c_numaker_config *config = dev->config; in m_numaker_i2c_master_xfer_msg_read_last_byte()
97 struct i2c_numaker_data *data = dev->data; in m_numaker_i2c_master_xfer_msg_read_last_byte()
98 I2C_T *i2c_base = config->i2c_base; in m_numaker_i2c_master_xfer_msg_read_last_byte()
101 __ASSERT_NO_MSG(data->master_xfer.msgs_pos < data->master_xfer.msgs_end); in m_numaker_i2c_master_xfer_msg_read_last_byte()
103 __ASSERT_NO_MSG((data->master_xfer.msgs_pos->flags & I2C_MSG_RW_MASK) == I2C_MSG_READ); in m_numaker_i2c_master_xfer_msg_read_last_byte()
104 __ASSERT_NO_MSG((data->master_xfer.buf_end - data->master_xfer.buf_pos) == 1); in m_numaker_i2c_master_xfer_msg_read_last_byte()
107 bool do_stop_prev = data->master_xfer.msgs_pos->flags & I2C_MSG_STOP; in m_numaker_i2c_master_xfer_msg_read_last_byte()
[all …]
/Zephyr-latest/cmake/
Dextra_flags.cmake1 # SPDX-License-Identifier: Apache-2.0
4 # Note: zephyr_get MERGE should not be used until issue #43959 is resolved.
10 # In both cases, it is safe to do a separate_arguments on the argument.
/Zephyr-latest/doc/_doxygen/
Ddoxygen-awesome-sidebar-only-darkmode-toggle.css5 https://github.com/jothepro/doxygen-awesome-css
9 Copyright (c) 2021 - 2023 jothepro
14 to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
16 furnished to do so, subject to the following conditions:
22 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
31 @media screen and (min-width: 768px) {
34 …width: calc(var(--side-nav-fixed-width) - calc(2 * var(--spacing-medium)) - var(--searchbar-height…
38 …width: calc(var(--side-nav-fixed-width) - calc(2 * var(--spacing-medium)) - 66px - var(--searchbar
Ddoxygen-awesome-sidebar-only.css4 https://github.com/jothepro/doxygen-awesome-css
8 Copyright (c) 2021 - 2023 jothepro
13 to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
15 furnished to do so, subject to the following conditions:
21 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
34 --side-nav-fixed-width: 335px;
35 --menu-display: none;
37 --top-height: 120px;
38 --toc-sticky-top: -25px;
39 --toc-max-height: calc(100vh - 2 * var(--spacing-medium) - 25px);
[all …]
/Zephyr-latest/arch/xtensa/core/startup/
Dmemerror_vector.S1 /* memerror-vector.S -- Memory Error Exception Vector and Handler */
2 /* SPDX-License-Identifier: MIT */
5 * Copyright (c) 2006-2013 Tensilica Inc.
10 * without limitation the rights to use, copy, modify, merge, publish,
12 * permit persons to whom the Software is furnished to do so, subject to
19 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
31 * It is here rather than in reset-vector.S because we want the symbol
35 * symbol _MemErrorHandler to the desired value, e.g. -
37 * xt-xcc test.c -g -o test -Wl,--defsym=_MemErrorHandler=0x08080808
Dmemctl_default.S1 // memctl_default.S - Default startup value for MEMCTL register.
3 // SPDX-License-Identifier: MIT
5 // Copyright (c) 1998-2015 Cadence Design Systems, Inc.
10 // without limitation the rights to use, copy, modify, merge, publish,
12 // permit persons to whom the Software is furnished to do so, subject to
19 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
32 // It is here rather than in reset-vector.S because we want the symbol
36 // symbol __memctl_default to the desired value, e.g. -
38 // xt-xcc test.c -g -o test -Wl,--defsym=__memctl_default=0x08080808
/Zephyr-latest/include/zephyr/xen/public/io/
Dconsole.h1 /* SPDX-License-Identifier: MIT */
11 * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
13 * furnished to do so, subject to the following conditions:
19 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
34 #define MASK_XENCONS_IDX(idx, ring) ((idx) & (sizeof(ring)-1))
/Zephyr-latest/lib/libc/minimal/source/stdlib/
Datoi.c1 /* SPDX-License-Identifier: MIT */
4 * Copyright © 2005-2014 Rich Felker, et al.
9 * without limitation the rights to use, copy, modify, merge, publish,
11 * permit persons to whom the Software is furnished to do so, subject to
18 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
26 /* From: http://fossies.org/dox/musl-1.0.5/atoi_8c_source.html */
40 case '-': in atoi()
56 n = 10 * n - (*s++ - '0'); in atoi()
58 return neg ? n : -n; in atoi()
/Zephyr-latest/include/zephyr/net/http/
Dparser_state.h1 /* SPDX-License-Identifier: MIT */
8 * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
10 * furnished to do so, subject to the following conditions:
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
Dparser_url.h1 /* SPDX-License-Identifier: MIT */
8 * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
10 * furnished to do so, subject to the following conditions:
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
/Zephyr-latest/doc/develop/
Dmodules.rst7 order to avoid reinventing the wheel and to reuse as much well-established,
14 modules, an external project is required to have its own life-cycle outside
17 should not contain code that is written exclusively for Zephyr. Instead,
27 Zephyr depends on several categories of modules, including but not limited to:
29 - Debugger integration
30 - Silicon vendor Hardware Abstraction Layers (HALs)
31 - Cryptography libraries
32 - File Systems
33 - Inter-Process Communication (IPC) libraries
36 references to optional :ref:`binary blobs <bin-blobs>`.
[all …]
/Zephyr-latest/doc/contribute/
Dcontributor_expectations.rst1 .. _contributor-expectations:
10 - Reviewed more quickly and reviewed more thoroughly. It's easier for reviewers
14 - Less wasted work if reviewers or maintainers reject the direction of the
17 - Easier to rebase and merge. Smaller PRs are less likely to conflict with other
20 - Easier to revert if the PR breaks functionality.
23 This page does not apply to draft PRs which can have any size, any number of
26 do not notify anyone by default.
32 - Smaller PRs should encompass one self-contained logical change.
34 - When adding a new large feature or API, the PR should address only one part of
38 - PRs should include tests or samples under the following conditions:
[all …]
/Zephyr-latest/subsys/tracing/ctf/
Dctf_map.h8 * modify, merge, publish, distribute, sublicense, and/or sell copies
10 * furnished to do so, subject to the following conditions:
16 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
24 * their institutions shall not be used in advertising or otherwise to
30 * Implements the higher-order Map function in the C Pre-Processor.
35 * [1] https://github.com/swansontec/map-macro SHA:383c38e9
36 * [2] http://jhnet.co.uk/articles/cpp_magic#turning-recursion-into-an-iterator
37 * [3] https://en.wikipedia.org/wiki/Map_(higher-order_function)
/Zephyr-latest/include/zephyr/xen/public/
Dmemory.h1 /* SPDX-License-Identifier: MIT */
11 * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
13 * furnished to do so, subject to the following conditions:
19 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
40 * OUT: MFN (*not* GMFN) bases of extents that were allocated
117 * Device mmio region ARM only; the region is mapped in Stage-2 using the
118 * Normal Memory Inner/Outer Write-Back Cacheable memory attribute.

1234