Skip to content

Commit 904f2fe

Browse files
committed
bug template
Signed-off-by: Anas Nashif <[email protected]>
1 parent bc4102d commit 904f2fe

File tree

4 files changed

+14
-12
lines changed

4 files changed

+14
-12
lines changed

.github/ISSUE_TEMPLATE/001_bug_report.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,9 @@ body:
88
attributes:
99
value: |
1010
Thanks for taking the time to fill out this bug report!
11+
This form is intended for issues related to Zephyr project and only for bugs in the upstream Zephyr codebase.
12+
This is not the place to report issues with your own application code or third-party libraries or report issue from other projects using Zephyr.
13+
1114
- type: textarea
1215
id: what-happened
1316
attributes:

cmake/sca/eclair/sca.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ elseif(ECLAIR_RULESET_WP)
6161
set(ECLAIR_RULESET WP)
6262
elseif(ECLAIR_RULESET_STD_LIB)
6363
set(ECLAIR_RULESET std_lib)
64-
elseif(ECLAIR_RULESET_ZEPHYR_GUIDELINES)
64+
elseif(ECLAIR_RULESET_ZEPHYR)
6565
set(ECLAIR_RULESET zephyr_guidelines)
6666
endif()
6767

cmake/sca/eclair/sca_options.cmake

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ option(ECLAIR_RULESET_STU_HEAVY "Selection of complex STU project coding guideli
1111
option(ECLAIR_RULESET_WP "All whole program project coding guidelines ('system' in MISRA's
1212
parlance)." OFF)
1313
option(ECLAIR_RULESET_STD_LIB "Project coding guidelines about the C Standard Library" OFF)
14-
option(ECLAIR_RULESET_ZEPHYR_GUIDELINES "Zephyr project Coding Guidelines" OFF)
14+
option(ECLAIR_RULESET_ZEPHYR "Zephyr project Coding Guidelines" OFF)
1515
option(ECLAIR_RULESET_USER "User defined ruleset" OFF)
1616

1717
option(ECLAIR_METRICS_TAB "Metrics in a spreadsheet format" OFF)
@@ -38,12 +38,12 @@ cmake_dependent_option(ECLAIR_FULL_TXT_FIRST_AREA "Show only the first area in a
3838

3939
# Ensure that exactly one ECLAIR_RULESET is selected
4040
set(ECLAIR_RULESETS
41+
ECLAIR_RULESET_ZEPHYR
4142
ECLAIR_RULESET_FIRST_ANALYSIS
4243
ECLAIR_RULESET_STU
4344
ECLAIR_RULESET_STU_HEAVY
4445
ECLAIR_RULESET_WP
4546
ECLAIR_RULESET_STD_LIB
46-
ECLAIR_RULESET_ZEPHYR_GUIDELINES
4747
ECLAIR_RULESET_USER
4848
)
4949

doc/develop/sca/eclair.rst

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,12 @@
33
ECLAIR support
44
##############
55

6-
Bugseng `ECLAIR <https://www.bugseng.com/eclair/>`__ is a certified
7-
static analysis tool and platform for software verification.
8-
Applications range from coding rule validation, with a
9-
particular emphasis on the MISRA and BARR-C coding standards, to the
10-
computation of software metrics, to the checking of independence and
11-
freedom from interference among software components, to the automatic
12-
detection of important classes of software errors.
6+
Bugseng `ECLAIR <https://www.bugseng.com/eclair/>`__ is a certified static
7+
analysis tool and platform for software verification. Applications range from
8+
coding rule validation, with a particular emphasis on the MISRA and BARR-C
9+
coding standards, to the computation of software metrics, to the checking of
10+
independence and freedom from interference among software components, to the
11+
automatic detection of important classes of software errors.
1312

1413
Prerequisites
1514
*************
@@ -29,8 +28,8 @@ license, visit `this page <https://www.bugseng.com/eclair/free-trial>`__.
2928
Running ECLAIR
3029
**************
3130

32-
To run ECLAIR, :ref:`west build <west-building>` should be
33-
called with a ``-DZEPHYR_SCA_VARIANT=eclair`` parameter.
31+
To run ECLAIR, :ref:`west build <west-building>` should be called with a
32+
``-DZEPHYR_SCA_VARIANT=eclair`` parameter.
3433

3534
.. code-block:: shell
3635

0 commit comments

Comments
 (0)