Skip to content

Commit 350d6ed

Browse files
author
Hormoz Zarnani
authored
Merge pull request zephyrproject-rtos#9 from Atmosic/rc_24.09.0
Release 24.09.0
2 parents 6c7d0d3 + 48d6935 commit 350d6ed

File tree

29,010 files changed

+1071371
-404612
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

29,010 files changed

+1071371
-404612
lines changed

.checkpatch.conf

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,3 +29,4 @@
2929
--ignore MULTISTATEMENT_MACRO_USE_DO_WHILE
3030
--ignore ENOSYS
3131
--ignore IS_ENABLED_CONFIG
32+
--ignore EXPORT_SYMBOL

.clang-format

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,8 @@ ColumnLimit: 100
3232
ConstructorInitializerIndentWidth: 8
3333
ContinuationIndentWidth: 8
3434
ForEachMacros:
35+
- 'ARRAY_FOR_EACH'
36+
- 'ARRAY_FOR_EACH_PTR'
3537
- 'FOR_EACH'
3638
- 'FOR_EACH_FIXED_ARG'
3739
- 'FOR_EACH_IDX'
@@ -67,6 +69,7 @@ ForEachMacros:
6769
- 'Z_GENLIST_FOR_EACH_NODE_SAFE'
6870
- 'STRUCT_SECTION_FOREACH'
6971
- 'TYPE_SECTION_FOREACH'
72+
- 'K_SPINLOCK'
7073
IfMacros:
7174
- 'CHECKIF'
7275
# Disabled for now, see bug https://github.com/zephyrproject-rtos/zephyr/issues/48520

.github/ISSUE_TEMPLATE/001_bug_report.md

Lines changed: 16 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ labels: bug
66
assignees: ''
77

88
---
9-
10-
**Notes (delete this)**
9+
<!--
10+
**Notes**
1111
Github Discussions (https://github.com/zephyrproject-rtos/zephyr/discussions)
1212
are available to first verify that the issue is a genuine Zephyr bug and not a
1313
consequence of Zephyr services misuse.
@@ -16,8 +16,10 @@ This issue list is only for bugs in the main Zephyr code base
1616
(https://github.com/zephyrproject-rtos/zephyr/). If the bug is for a project
1717
fork (such as NCS) specific feature, please open an issue in the fork project
1818
instead.
19+
-->
1920

2021
**Describe the bug**
22+
<!--
2123
A clear and concise description of what the bug is.
2224
2325
Please also mention any information which could help others to understand
@@ -27,31 +29,43 @@ the problem you're facing:
2729
- Is this a regression? If yes, have you been able to "git bisect" it to a
2830
specific commit?
2931
- ...
32+
-->
3033

3134
**To Reproduce**
35+
<!--
3236
Steps to reproduce the behavior:
3337
1. mkdir build; cd build
3438
2. cmake -DBOARD=board\_xyz
3539
3. make
3640
4. See error
41+
-->
3742

3843
**Expected behavior**
44+
<!--
3945
A clear and concise description of what you expected to happen.
46+
-->
4047

4148
**Impact**
49+
<!--
4250
What impact does this issue have on your progress (e.g., annoyance, showstopper)
51+
-->
4352

4453
**Logs and console output**
54+
<!--
4555
If applicable, add console logs or other types of debug information
4656
e.g Wireshark capture or Logic analyzer capture (upload in zip archive).
4757
copy-and-paste text and put a code fence (\`\`\`) before and after, to help
4858
explain the issue. (if unable to obtain text log, add a screenshot)
59+
-->
4960

5061
**Environment (please complete the following information):**
62+
5163
- OS: (e.g. Linux, MacOS, Windows)
5264
- Toolchain (e.g Zephyr SDK, ...)
5365
- Commit SHA or Version used
5466

5567
**Additional context**
68+
<!--
5669
Add any other context that could be relevant to your issue, such as pin setting,
5770
target configuration, ...
71+
-->

.github/ISSUE_TEMPLATE/002_enhancement.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,21 @@ assignees: ''
88
---
99

1010
**Is your enhancement proposal related to a problem? Please describe.**
11+
<!--
1112
A clear and concise description of what the problem is.
13+
-->
1214

1315
**Describe the solution you'd like**
16+
<!--
1417
A clear and concise description of what you want to happen.
18+
-->
1519

1620
**Describe alternatives you've considered**
21+
<!--
1722
A clear and concise description of any alternative solutions or features you've considered.
23+
-->
1824

1925
**Additional context**
26+
<!--
2027
Add any other context or graphics (drag-and-drop an image) about the feature request here.
28+
-->

.github/ISSUE_TEMPLATE/003_rfc-proposal.md

Lines changed: 16 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -9,43 +9,52 @@ assignees: ''
99

1010
## Introduction
1111

12+
<!--
1213
This section targets end users, TSC members, maintainers and anyone else that might
1314
need a quick explanation of your proposed change.
15+
-->
1416

1517
### Problem description
16-
18+
<!--
1719
Why do we want this change and what problem are we trying to address?
20+
-->
1821

1922
### Proposed change
20-
23+
<!--
2124
A brief summary of the proposed change - the 10,000 ft view on what it will
2225
change once this change is implemented.
26+
-->
2327

2428
## Detailed RFC
25-
29+
<!--
2630
In this section of the document the target audience is the dev team. Upon
2731
reading this section each engineer should have a rather clear picture of what
2832
needs to be done in order to implement the described feature.
33+
-->
2934

3035
### Proposed change (Detailed)
31-
36+
<!--
3237
This section is freeform - you should describe your change in as much detail
3338
as possible. Please also ensure to include any context or background info here.
3439
For example, do we have existing components which can be reused or altered.
3540
3641
By reading this section, each team member should be able to know what exactly
3742
you're planning to change and how.
43+
-->
3844

3945
### Dependencies
40-
46+
<!--
4147
Highlight how the change may affect the rest of the project (new components,
4248
modifications in other areas), or other teams/projects.
49+
-->
4350

4451
### Concerns and Unresolved Questions
45-
52+
<!--
4653
List any concerns, unknowns, and generally unresolved questions etc.
54+
-->
4755

4856
## Alternatives
49-
57+
<!--
5058
List any alternatives considered, and the reasons for choosing this option
5159
over them.
60+
-->

.github/ISSUE_TEMPLATE/004_feature_request.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,21 @@ assignees: ''
88
---
99

1010
**Is your feature request related to a problem? Please describe.**
11+
<!--
1112
A clear and concise description of what the problem is.
13+
-->
1214

1315
**Describe the solution you'd like**
16+
<!--
1417
A clear and concise description of what you want to happen.
18+
-->
1519

1620
**Describe alternatives you've considered**
21+
<!--
1722
A clear and concise description of any alternative solutions or features you've considered.
23+
-->
1824

1925
**Additional context**
26+
<!--
2027
Add any other context or graphics (drag-and-drop an image) about the feature request here.
28+
-->

.github/SECURITY.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@ updates:
88
- The most recent release, and the release prior to that.
99
- Active LTS releases.
1010

11-
At this time, with the latest release of v3.5, the supported
11+
At this time, with the latest release of v3.6, the supported
1212
versions are:
1313

1414
- v2.7: Current LTS
15-
- v3.4: Prior release
16-
- v3.5: Current release
15+
- v3.5: Prior release
16+
- v3.6: Current release
1717

1818
## Reporting process
1919

.github/workflows/assigner.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ on:
99
- ready_for_review
1010
branches:
1111
- main
12+
- collab-*
1213
- v*-branch
1314
issues:
1415
types:
@@ -27,7 +28,7 @@ jobs:
2728
pip3 install -U PyGithub>=1.55 west
2829
2930
- name: Check out source code
30-
uses: actions/checkout@v3
31+
uses: actions/checkout@v4
3132

3233
- name: Run assignment script
3334
env:

.github/workflows/backport_issue_check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313

1414
steps:
1515
- name: Check out source code
16-
uses: actions/checkout@v3
16+
uses: actions/checkout@v4
1717

1818
- name: Install Python dependencies
1919
run: |

.github/workflows/bsim-tests-publish.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313

1414
steps:
1515
- name: Download artifacts
16-
uses: dawidd6/action-download-artifact@v2
16+
uses: dawidd6/action-download-artifact@v3
1717
with:
1818
run_id: ${{ github.event.workflow_run.id }}
1919

0 commit comments

Comments
 (0)