Searched +full:files +full:- +full:exclude (Results 1 – 24 of 24) sorted by relevance
/Zephyr-Core-3.7.0/scripts/ci/ |
D | tags.yaml | 1 # This file contains information on what files are associated with which 9 # files: 10 # List of paths and/or glob patterns giving the files in the tag, 13 # If a path or glob pattern ends in a '/', it matches all files within 19 # files-regex: 24 # Can be combined with a 'files' key. 26 # Note: Prefer plain 'files' patterns where possible. get_maintainer.py 30 # files-exclude: 31 # Like 'files', but any matching files will be excluded from the tag. 33 # files-regex-exclude: [all …]
|
D | test_plan.py | 2 # SPDX-License-Identifier: Apache-2.0 5 # A script to generate twister options based on modified files. 29 # however, pylint complains that it doesn't recognized them when used (used-before-assignment). 68 # return search(). (?:) is a non-capturing group. 130 cmd = [f"{zephyr_base}/scripts/twister", "-c"] + options + ["--save-tests", fname ] 132 cmd += ["--no-detailed-test-id"] 135 cmd+=["-T", root] 137 cmd.append("--integration") 140 cmd += ["--quarantine-list", q] 155 old_manifest_content = repo_to_scan.git.show(f"{args.commits[:-2]}:west.yml") [all …]
|
D | check_compliance.py | 5 # SPDX-License-Identifier: Apache-2.0 54 f"{cp.stdout.decode('utf-8')}\n" 56 f"{cp.stderr.decode('utf-8')}\n") 58 return cp.stdout.decode("utf-8").rstrip() 67 return git('rev-list', 68 f'--max-count={-1 if "." in refspec else 1}', refspec).split() 71 filter_arg = (f'--diff-filter={filter}',) if filter else () 72 paths_arg = ('--', *paths) if paths else () 73 out = git('diff', '--name-only', *filter_arg, COMMIT_RANGE, *paths_arg) 74 files = out.splitlines() [all …]
|
/Zephyr-Core-3.7.0/scripts/ |
D | get_maintainer.py | 4 # SPDX-License-Identifier: Apache-2.0 7 Lists maintainers for files or commits. Similar in function to 16 ./get_maintainer.py path --help 60 "-m", "--maintainers", 63 "the top-level repository directory is used, and must exist. " 65 "to the top-level directory.") 68 help="Available commands (each has a separate --help text)") 92 help="List files in areas") 97 help="Name of area to list files in. If not specified, all " 98 "non-orphaned files are listed (all files that do not appear in " [all …]
|
D | twister | 4 # SPDX-License-Identifier: Apache-2.0 16 files in the application's project directory. This file may contain one or more 19 that testsuite meta-data. The full canonical name for each test case is <path to 34 Don't build or run this test case unless --enable-slow was passed 35 in on the command line. Intended for time-consuming test cases 139 if the symbol is defined to a non-empty string. 146 all comparison operators (non-associative) 170 Therefore filtering by using {platform|arch}_{exclude|allow} is much faster. 173 files and options passed in on the command line. If there is any confusion, 174 running with -v or examining the test plan report (testplan.json)
|
D | checkpatch.pl | 2 # SPDX-License-Identifier: GPL-2.0 7 # (c) 2008-2010 Andy Whitcroft <apw@canonical.com> 8 # (c) 2010-2018 Joe Perches <joe@perches.com> 52 my @exclude = (); 67 my $git_command ='export LANGUAGE=en_US.UTF-8; git'; 78 -q, --quiet quiet 79 --no-tree run without a kernel tree 80 --no-signoff do not check for 'Signed-off-by' line 81 --patch treat FILE as patchfile (default) 82 --emacs emacs compile window format [all …]
|
/Zephyr-Core-3.7.0/ |
D | MAINTAINERS.yml | 35 # files: 36 # List of paths and/or glob patterns giving the files in the area, 39 # If a path or glob pattern ends in a '/', it matches all files within 45 # files-regex: 50 # Can be combined with a 'files' key. 52 # Note: Prefer plain 'files' patterns where possible. get_maintainer.py 56 # files-exclude: 57 # Like 'files', but any matching files will be excluded from the area. 59 # files-regex-exclude: 60 # Like 'files-regex', but any matching files will be excluded from the [all …]
|
/Zephyr-Core-3.7.0/doc/_extensions/zephyr/ |
D | gh_utils.py | 8 SPDX-License-Identifier: Apache-2.0 29 - ``gh_link_version``: GitHub version to use in the URL (e.g. "main") 30 - ``gh_link_base_url``: Base URL used as a prefix for generated URLs. 31 - ``gh_link_prefixes``: Mapping of pages (regex) <> GitHub prefix. 32 - ``gh_link_exclude``: List of pages (regex) that will not report a URL. Useful 33 for, e.g., auto-generated pages not in Git. 62 def get_page_prefix(app: Sphinx, pagename: str) -> str: 80 for exclude in app.config.gh_link_exclude: 81 if re.match(exclude, pagename): 93 def gh_link_get_url(app: Sphinx, pagename: str, mode: str = "blob") -> Optional[str]: [all …]
|
/Zephyr-Core-3.7.0/doc/ |
D | zephyr.doxyfile.in | 20 # doxygen -x [configFile] 24 # doxygen -x_noenv [configFile] 26 #--------------------------------------------------------------------------- 28 #--------------------------------------------------------------------------- 31 # file that follow. The default is UTF-8 which is also the encoding used for all 35 # The default value is: UTF-8. 37 DOXYFILE_ENCODING = UTF-8 40 # double-quotes, unless you are using Doxywizard) that should identify the 74 # sub-directories (in 2 levels) under the output directory of each output format 75 # and will distribute the generated files over these directories. Enabling this [all …]
|
/Zephyr-Core-3.7.0/scripts/pylib/twister/twisterlib/ |
D | coverage.py | 3 # Copyright (c) 2018-2022 Intel Corporation 4 # SPDX-License-Identifier: Apache-2.0 71 hex_dump = sp[1][:-1] 99 # Iteratively call gcov-tool (not gcov) to merge the files 100 merge_tool = self.gcov_tool + '-tool' 101 for d1, d2 in zip(dirs[:-1], dirs[1:]): 102 cmd = [merge_tool, 'merge', d1, d2, '--output', d2] 106 with open(f'{dirs[-1]}/tmp.gcda', 'rb') as fp: 107 return fp.read(-1).hex() 111 logger.debug("Generating gcda files") [all …]
|
D | testplan.py | 5 # SPDX-License-Identifier: Apache-2.0 30 print("Install the anytree module to use the --test-tree option") 46 # This is needed to load edt.pickle files. 48 "python-devicetree", "src")) 49 from devicetree import edtlib # pylint: disable=unused-import 81 config_re = re.compile('(CONFIG_[A-Za-z0-9_]+)[=]\"?([^\"]*)\"?$') 82 dt_re = re.compile('([A-Za-z0-9_]+)[=]\"?([^\"]*)\"?$') 86 "scripts", "schemas", "twister", "testsuite-schema.yaml")) 89 "scripts", "schemas", "twister", "quarantine-schema.yaml")) 91 …tc_schema_path = os.path.join(ZEPHYR_BASE, "scripts", "schemas", "twister", "test-config-schema.ya… [all …]
|
D | environment.py | 6 # SPDX-License-Identifier: Apache-2.0 43 …ckages = [pkg.project_name for pkg in pkg_resources.working_set] # pylint: disable=not-an-iterable 44 PYTEST_PLUGIN_INSTALLED = 'pytest-twister-harness' in installed_packages 61 $ ./scripts/twister -v \\ 62 --testsuite-root tests/ztest/base \\ 63 --testsuite-root tests/kernel \\ 64 --test tests/ztest/base/testing.ztest.verbose_0 \\ 65 --test tests/kernel/fifo/fifo_api/kernel.fifo 90 "-E", 91 "--save-tests", [all …]
|
/Zephyr-Core-3.7.0/doc/develop/west/ |
D | manifest.rst | 1 .. _west-manifests: 7 manifest files, and the ``west manifest`` command. For API documentation on the 8 ``west.manifest`` module, see :ref:`west-apis-manifest`. For a more general 9 introduction and command overview, see :ref:`west-basics`. 16 .. _west-mr-model: 25 .. figure:: west-mr-model.png 27 :alt: West multi-repo history 28 :figclass: align-center 30 West multi-repo history 48 - Projects can be added (like ``P1`` between manifest repository [all …]
|
/Zephyr-Core-3.7.0/cmake/modules/ |
D | extensions.cmake | 1 # SPDX-License-Identifier: Apache-2.0 14 # 1. Zephyr-aware extensions 21 # 2. Kconfig-aware extensions 23 # 3. CMake-generic extensions 43 # 1. Zephyr-aware extensions 48 # "zephyr". zephyr is a catch-all CMake library for source files that 50 # compiler flags that all zephyr source files use. 51 # [0] https://cmake.org/cmake/help/latest/manual/cmake-buildsystem.7.html 65 # As a very high-level introduction here are two call graphs that are 71 # zephyr_library_compile_options() --> target_compile_options() [all …]
|
/Zephyr-Core-3.7.0/doc/develop/test/ |
D | twister.rst | 20 When using (at least) one ``-v`` option, twister's console output 25 - The test is marked as ``build_only: true`` in its ``.yaml`` 27 - The test configuration has defined a ``harness`` but you don't have 29 - The target device is not connected and not available for flashing 30 - You or some higher level automation invoked twister with 31 ``--build-only``. 37 .. group-tab:: Linux 39 .. code-block:: bash 41 $ source zephyr-env.sh 44 .. group-tab:: Windows [all …]
|
/Zephyr-Core-3.7.0/scripts/west_commands/completion/ |
D | west-completion.zsh | 4 # SPDX-License-Identifier: Apache-2.0 6 # Ensure this works also when being source-ed 9 typeset -A -g _opt_args 12 local -a builtin_cmds=( 25 local -a zephyr_ext_cmds=( 29 'sign[sign a Zephyr binary for bootloader chain-loading]' 34 'zephyr-export[export Zephyr installation as a CMake config package]' 39 local -a all_cmds=(${builtin_cmds} ${zephyr_ext_cmds}) 41 if [[ -v WEST_COMP_CHECK_WORKSPACE ]]; then 43 if [ $? -eq 0 ]; then [all …]
|
D | west-completion.fish | 15 # exclude the caller if one of the arguments is present in the command line 20 set -l tokens (commandline -opc) 41 set -l tokens (commandline -opc) 42 set -l argc (count $argv) 43 set -l max $argv[1] 44 set -l counter 0 46 if test $argc -eq 1 47 if test (math (count $tokens) - 2) -ge $max 60 if $counter -ge $max 77 set -l tokens (commandline -opc) [all …]
|
/Zephyr-Core-3.7.0/doc/releases/ |
D | migration-guide-3.6.rst | 26 building with PicolibC. Since this release, these are set only for the files that need them. 35 instead use the new ``-DFILE_SUFFIX`` feature :ref:`application-file-suffixes`. 57 * NXP: Enabled :ref:`linkserver<linkserver-debug-host-tools>` to be the default runner on the 72 To enable them again use the ``west config manifest.project-filter -- +<module 73 name>`` command, or ``west config manifest.group-filter -- +optional`` to 81 command e.g. ``west flash --erase``. (:github:`64703`) 86 * If you have zcbor-generated code that relies on the zcbor libraries through Zephyr, you must 87 regenerate the files using zcbor 0.8.1. Note that the names of generated types and members has 123 macro avoids run-time string comparisons, and is also safer because it will 126 .. list-table:: [all …]
|
D | release-notes-3.2.rst | 13 * Added support for :ref:`bin-blobs` (also see :ref:`west-blobs`). 15 * Converted all supported boards from ``pinmux`` to :ref:`pinctrl-guide`. 31 * CVE-2022-2993: Under embargo until 2022-11-03 33 * CVE-2022-2741: Under embargo until 2022-10-14 56 This definition can be used by third-party code to compile code conditional 58 Therefore, any third-party code integrated using the Zephyr build system will 91 changed from ``-ENETDOWN`` to ``-ENETUNREACH``. A return value of ``-ENETDOWN`` now indicates 129 * Removed support for configuring the CAN-FD maximum DLC value via Kconfig 156 valid for specific bindings to specify like :dtcompatible:`gpio-leds` and 157 :dtcompatible:`fixed-partitions`. [all …]
|
D | release-notes-3.5.rst | 38 * CVE-2023-3725 `Zephyr project bug tracker GHSA-2g3m-p6c7-8rr3 39 <https://github.com/zephyrproject-rtos/zephyr/security/advisories/GHSA-2g3m-p6c7-8rr3>`_ 41 * CVE-2023-4257 `Zephyr project bug tracker GHSA-853q-q69w-gf5j 42 <https://github.com/zephyrproject-rtos/zephyr/security/advisories/GHSA-853q-q69w-gf5j>`_ 44 * CVE-2023-4258 `Zephyr project bug tracker GHSA-m34c-cp63-rwh7 45 <https://github.com/zephyrproject-rtos/zephyr/security/advisories/GHSA-m34c-cp63-rwh7>`_ 47 * CVE-2023-4259 `Zephyr project bug tracker GHSA-gghm-c696-f4j4 48 <https://github.com/zephyrproject-rtos/zephyr/security/advisories/GHSA-gghm-c696-f4j4>`_ 50 * CVE-2023-4260 `Zephyr project bug tracker GHSA-gj27-862r-55wh 51 <https://github.com/zephyrproject-rtos/zephyr/security/advisories/GHSA-gj27-862r-55wh>`_ [all …]
|
D | release-notes-1.14.rst | 17 * CVE-2020-10066 18 * CVE-2020-10069 19 * CVE-2020-13601 20 * CVE-2020-13602 32 * :github:`issuenumber` - issue title 34 * :github:`18334` - DNS resolution is broken for some addresses in master/2.0-pre 35 * :github:`19917` - Bluetooth: Controller: Missing LL_ENC_RSP after HCI LTK Negative Reply 36 * :github:`21107` - LL_ASSERT and 'Imprecise data bus error' in LL Controller 37 * :github:`21257` - tests/net/net_pkt failed on mimxrt1050_evk board. 38 * :github:`21299` - bluetooth: Controller does not release buffer on central side after peripheral … [all …]
|
/Zephyr-Core-3.7.0/include/zephyr/drivers/pcie/ |
D | pcie.h | 4 * SPDX-License-Identifier: Apache-2.0 19 #include <zephyr/dt-bindings/pcie/pcie.h> 34 * in include/dt-bindings/pcie/pcie.h: see PCIE_BDF() and friends, since 45 * look to PCIE_ID_* macros in include/dt-bindings/pcie/pcie.h for more. 49 /* Helper macro to exclude invalid PCIe identifiers. We should really only 117 * Initialize PCIe-related information within a specific instance of 158 * These functions are arch-, board-, or SoC-specific. 162 * @brief Read a 32-bit word from an endpoint's configuration space. 173 * @brief Write a 32-bit word to an endpoint's configuration space. 194 /** Scan all available PCI host controllers and sub-busses */ [all …]
|
/Zephyr-Core-3.7.0/doc/contribute/coding_guidelines/ |
D | index.rst | 13 but not enforced. Rules are not yet enforced in CI and pull-requests cannot be 41 <https://github.com/zephyrproject-rtos/zephyr/issues/58903>`__ is being worked on. 46 The coding guideline rules are based on MISRA-C 2012 and are a subset of MISRA-C. 54 available through the project. If you need a copy of MISRA-C 2012, please 60 .. list-table:: Main rules 61 :header-rows: 1 64 * - MISRA C 2012 65 - Severity 66 - Description 67 - CERT C [all …]
|
/Zephyr-Core-3.7.0/samples/modules/tflite-micro/hello_world/train/ |
D | train_hello_world_model.ipynb | 31 "<table class=\"tfo-notebook-buttons\" align=\"left\">\n", 36 …o_world_model.ipynb\"><img src=\"https://www.tensorflow.org/images/GitHub-Mark-32px.png\" />View s… 53 "id": "5PYwRFppd-WB" 56 "# Define paths to model files\n", 84 "outputId": "510567d6-300e-40e2-f5b8-c3520a3f3a8b", 97 …"Requirement already satisfied: tensorflow==2.4.0rc0 in /usr/local/lib/python3.6/dist-packages (2.… 98 …"Requirement already satisfied: termcolor~=1.1.0 in /usr/local/lib/python3.6/dist-packages (from t… 99 …"Requirement already satisfied: gast==0.3.3 in /usr/local/lib/python3.6/dist-packages (from tensor… 100 …"Requirement already satisfied: astunparse~=1.6.3 in /usr/local/lib/python3.6/dist-packages (from … 101 …"Requirement already satisfied: absl-py~=0.10 in /usr/local/lib/python3.6/dist-packages (from tens… [all …]
|