Home
last modified time | relevance | path

Searched full:release (Results 1 – 25 of 499) sorted by relevance

12345678910>>...20

/Zephyr-Core-3.4.0/doc/project/
Drelease_process.rst3 Release Process
10 A time-based release process enables the Zephyr project to provide users with a
12 roughly 4-month release cycle allows the project to coordinate development of
14 maintain the quality of the overall release without delays because of one or two
17 The Zephyr release model was loosely based on the Linux kernel model:
19 - Release tagging procedure:
22 - release branches for maintenance after release tagging.
23 - Each release period will consist of a development phase followed by a
24 stabilization phase. Release candidates will be tagged during the
31 - Stabilisation phase: the release manager creates a vN-rc1 tag and the tree
[all …]
Dproposals.rst11 block a release. This is an incremental enhancement to a feature that already
16 that is not part of any release plans yet, that has not been vetted, and needs
38 willingness to drive implementation of the feature in an upcoming release, and
63 Roadmap and Release Plans
66 Project roadmaps and release plans are both important tools for the project, but
68 communicates the high-level overview of a project's strategy, while a release
72 - The project roadmap communicates the why; a release plan details the what
73 - A release plan spans only a few months; a product roadmap might cover a year
93 Release Plans
96 The release plan comes into play when the project roadmap's high-level strategy
[all …]
Dproject_roles.rst91 * Responsibility to participate in the quality verification and release
130 Release Engineering Team member, Release Manager, but are no longer engaged
149 by the other Maintainers, the Release Engineering team can set an assignee when
163 Release Engineering Team
168 * The members of the Release Engineering team are expected to fill
169 the Release Manager role based on a defined cadence and selection process.
170 * The cadence and selection process are defined by the Release Engineering
174 Release Engineering team has the following rights and responsibilities:
187 Joining the Release Engineering team
190 by a TSC voting member to join the Release Engineering team.
[all …]
/Zephyr-Core-3.4.0/.github/workflows/
Drelease.yml1 name: Create a Release
10 release:
35 - name: Create empty release notes body
37 echo "TODO: add release overview and notes link" > release-notes.txt
39 - name: Create Release
41 uses: actions/create-release@v1
47 body_path: release-notes.txt
51 - name: Upload Release Assets
52 id: upload-release-asset
53 uses: actions/upload-release-asset@v1
/Zephyr-Core-3.4.0/.github/
DSECURITY.md8 - The most recent release, and the release prior to that.
11 At this time, with the latest release of v3.3, the supported
15 - v3.2: Prior release
16 - v3.3: Current release
/Zephyr-Core-3.4.0/doc/releases/
Dindex.rst12 Release Life Cycle and Maintenance
27 A Zephyr :ref:`Long Term Support (LTS) <release_process_lts>` release is
31 Support and maintenance for an LTS release stops at least half a year
32 after the following LTS release is published.
40 - Currently supported Long Term Support (LTS) release.
51 | Release | Release date | EOL |
63 Release Notes
68 release), or clone the GitHub repository.
70 With the introduction of the :ref:`west` tool after the release of Zephyr 1.13,
76 specific release and can be found at https://docs.zephyrproject.org/.
[all …]
Drelease-notes-1.5.rst6 The Zephyr Engineering team is glad to announce the release of Zephyr Kernel
7 1.5.0. This is the first release to follow the 3-month release cadence.
8 This release includes numerous fixes and support for major features.
11 Major enhancements included with the release:
213 * ``ZEP-461`` - Release 1.4.0 has broken the BMI160 sample as well as an application based on it
269 - No workaround, will fix in future release.
275 - No workaround, will fix in future release.
278 - No workaround, will fix in future release.
281 - No workaround, will fix in future release.
284 - No workaround, will fix in future release.
[all …]
/Zephyr-Core-3.4.0/dts/bindings/input/
Dzephyr,input-longpress.yaml27 # release before one second
28 input event: dev=buttons SYN type= 1 code= 11 value=0 # INPUT_KEY_0 release
30 input event: dev=longpress SYN type= 1 code= 30 value=0 # INPUT_KEY_A release
35 # wait for release
36 input event: dev=buttons SYN type= 1 code= 11 value=0 # INPUT_KEY_0 release
37 input event: dev=longpress SYN type= 1 code= 45 value=0 # INPUT_KEY_X release
/Zephyr-Core-3.4.0/tests/subsys/portability/cmsis_rtos_v2/src/
Dsemaphore.c23 /* Try taking semaphore after a TIMEOUT, but before release */ in thread_sema()
34 * and release it. in thread_sema()
40 "Semaphore release failure"); in thread_sema()
100 /* Release invalid semaphore */ in ZTEST()
102 "Semaphore release worked unexpectedly"); in ZTEST()
104 /* Release the semaphore to be used by the other thread */ in ZTEST()
106 zassert_true(status == osOK, "Semaphore release failure"); in ZTEST()
Dmutex.c71 /* Try to release mutex without obtaining it */ in ZTEST()
92 zassert_true(status == osOK, "Mutex release failure"); in ZTEST()
94 /* Release mutex again as it was acquired twice */ in ZTEST()
96 zassert_true(status == osOK, "Mutex release failure"); in ZTEST()
98 /* Try to release mutex that was already released */ in ZTEST()
136 * and release it. in tThread_entry_lock_timeout()
174 /* Release the mutex to be used by the other thread */ in ZTEST()
/Zephyr-Core-3.4.0/samples/boards/stm32/power_mgmt/blinky/src/
Dmain.c30 /* Release resource to release device clock */ in main()
35 /* Release resource to release device clock */ in main()
/Zephyr-Core-3.4.0/tests/subsys/portability/cmsis_rtos_v1/src/
Dmutex.c62 /* Try to release mutex without obtaining it */ in ZTEST()
74 zassert_true(status == osOK, "Mutex release failure"); in ZTEST()
76 /* Release mutex again as it was acquired twice */ in ZTEST()
78 zassert_true(status == osOK, "Mutex release failure"); in ZTEST()
80 /* Try to release mutex that was already released */ in ZTEST()
105 * Trying to release it here should fail. in tThread_entry_lock_timeout()
116 * and release it. in tThread_entry_lock_timeout()
143 /* Release the mutex to be used by the other thread */ in ZTEST()
Dsemaphore.c24 /* Try taking semaphore after a TIMEOUT, but before release */ in thread_sema()
35 * and release it. in thread_sema()
41 "Semaphore release failure"); in thread_sema()
68 /* Release the semaphore to be used by the other thread */ in ZTEST()
70 zassert_true(status == osOK, "Semaphore release failure"); in ZTEST()
/Zephyr-Core-3.4.0/doc/security/
Dreporting.rst91 - The Zephyr release owners for the relevant releases affected by
129 Each Zephyr release shall contain a report of CVEs that were fixed in
130 that release. Because of the sensitive nature of these
131 vulnerabilities, the release shall merely include a list of CVEs that
176 - The current Long Term Stable (LTS) release.
181 backports, and apply them to any of the above listed release branches,
183 this release was made).
198 - The current release manager, and the release manager for historical
206 - As needed, release managers and maintainers may be invited to attend
/Zephyr-Core-3.4.0/include/zephyr/
Dkernel_version.h26 * x -- major release
27 * y -- minor release
28 * z -- patchlevel release
/Zephyr-Core-3.4.0/doc/connectivity/bluetooth/api/shell/
Dcsip.rst13 or a laptop. The client is able to lock and release members of a coordinated
37 all the members has been connected to, it can lock and release the set.
51 release_set :Release set
53 release :Release specific member [member_index]
123 Release set members:
151 release :Release the set [force]
Dbap.rst40 release
64 "release","config","any","releasing/codec-configure/idle"
97 Disconnect and release:
102 uart:~$ bap release
115 Server initiated disable and release:
120 uart:~$ bap release
133 Stop and release a broadcast source stream:
172 Stop and release a broadcast sink stream:
398 Release section in Bluetooth: Basic Audio Profile
401 The :code:`release` command releases the current stream and its configuration.
[all …]
/Zephyr-Core-3.4.0/doc/develop/api/
Dapi_lifecycle.rst165 - An entry in the "API Changes" section of the release notes for the next
166 upcoming release
167 - The labels ``API``, ``Stable API Change`` and ``Release Notes``, as well as
181 release notes.
190 section of the release notes.
196 For example, if an API was first deprecated in release 1.14,
208 - Include the deprecation in the "API Changes" of the release notes for the
209 next upcoming release
214 add it to the roadmap targeting the appropriate release
239 the release notes, mailing lists, Github issues and pull-requests.
[all …]
/Zephyr-Core-3.4.0/soc/arm/st_stm32/stm32wb/
Dpower.c46 /* Release ENTRY_STOP_MODE semaphore */ in lpm_hsem_lock()
90 /* Release RCC semaphore */ in pm_state_set()
101 /* Release RCC semaphore */ in pm_state_set()
114 /* Release ENTRY_STOP_MODE semaphore */ in pm_state_exit_post_ops()
139 /* Release RCC semaphore */ in pm_state_exit_post_ops()
/Zephyr-Core-3.4.0/tests/bluetooth/controller/ctrl_phy_update/src/
Dmain.c151 /* Make sure we use a correct type or the release won't work */ in ZTEST()
174 /* Release Tx */ in ZTEST()
186 /* Release RX node to now allow pre-alloc for DLE NTF */ in ZTEST()
209 /* Release Tx */ in ZTEST()
240 /* Release Ntf */ in ZTEST()
244 /* Release Ntf */ in ZTEST()
291 /* Release Tx */ in ZTEST()
342 /* Release Tx */ in ZTEST()
355 /* Release Ntf */ in ZTEST()
384 /* Make sure we use a correct type or the release won't work */ in ZTEST()
[all …]
/Zephyr-Core-3.4.0/tests/drivers/clock_control/onoff/src/
Dtest_clock_control_onoff.c74 /* Attempt to release while ongoing start. Cannot do that */ in ZTEST()
92 /* Test checks if premature clock release works ok. If clock is released before
93 * it is started it is the best to do that release from the callback to avoid
94 * waiting until clock is started in the release context.
/Zephyr-Core-3.4.0/dts/bindings/mtd/
Djedec,spi-nor-common.yaml35 implies that the RDPD (0xAB) Release from Deep Power Down command
48 (1) tDPDD (Delay Time for Release from Deep Power-Down Mode)
49 (2) tCDRP (CSn Toggling Time before Release from Deep Power-Down Mode)
50 (3) tRDP (Recovery Time for Release from Deep Power-Down Mode)
/Zephyr-Core-3.4.0/subsys/bluetooth/controller/ll_sw/
Dull_df_internal.h10 /* Release link to node_rx_iq_report memory. */
12 /* Release memory of node_rx_iq_report. */
/Zephyr-Core-3.4.0/tests/bluetooth/controller/ctrl_collision/src/
Dmain.c210 /* Release Tx */ in ZTEST()
230 /* Release Tx */ in ZTEST()
278 /* Release Tx */ in ZTEST()
311 /* Release Ntf */ in ZTEST()
380 /* Release Tx */ in ZTEST()
425 /* Release Tx */ in ZTEST()
432 /* Release Ntf */ in ZTEST()
452 /* Release Tx */ in ZTEST()
483 /* Release Ntf */ in ZTEST()
538 /* Release Tx */ in ZTEST()
[all …]
/Zephyr-Core-3.4.0/tests/lib/newlib/thread_safety/src/
Dlocks.c73 /* Release lock and verify release */ in ZTEST()
76 "non-recursive lock release failed"); in ZTEST()
105 zassert_not_equal(ret, 0, "recursive lock release failed"); in retargetable_lock_mutex_thread_rel()
134 /* Release lock from parent thread */ in ZTEST()
137 /* Spawn a lock release check thread and wait for exit */ in ZTEST()
182 /* Release sinit lock */ in sinit_lock_thread_rel()
252 /* Release sfp lock */ in sfp_lock_thread_rel()
322 /* Release malloc lock */ in malloc_lock_thread_unlock()
392 /* Release env lock */ in env_lock_thread_unlock()

12345678910>>...20