Searched +full:files +full:- +full:exclude (Results 1 – 21 of 21) sorted by relevance
/Zephyr-Core-3.5.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. 55 # return search(). (?:) is a non-capturing group. 114 cmd = ["scripts/twister", "-c"] + options + ["--save-tests", fname ] 116 cmd.append("--integration") 131 old_manifest_content = repo.git.show(f"{args.commits[:-2]}:west.yml") 142 old_projs - new_projs)) 145 new_projs - old_projs)) 147 aprojs = new_projs - old_projs - uprojs 160 _options.extend(["-t", p ]) [all …]
|
D | check_compliance.py | 5 # SPDX-License-Identifier: Apache-2.0 49 f"{cp.stdout.decode('utf-8')}\n" 51 f"{cp.stderr.decode('utf-8')}\n") 53 return cp.stdout.decode("utf-8").rstrip() 62 return git('rev-list', 63 f'--max-count={-1 if "." in refspec else 1}', refspec).split() 66 filter_arg = (f'--diff-filter={filter}',) if filter else () 67 paths_arg = ('--', *paths) if paths else () 68 out = git('diff', '--name-only', *filter_arg, COMMIT_RANGE, *paths_arg) 69 files = out.splitlines() [all …]
|
/Zephyr-Core-3.5.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 136 if the symbol is defined to a non-empty string. 143 all comparison operators (non-associative) 167 Therefore filtering by using {platform|arch}_{exclude|allow} is much faster. 170 files and options passed in on the command line. If there is any confusion, 171 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.5.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.5.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.5.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.5.0/scripts/pylib/twister/twisterlib/ |
D | testplan.py | 5 # SPDX-License-Identifier: Apache-2.0 28 print("Install the anytree module to use the --test-tree option") 44 # This is needed to load edt.pickle files. 46 "python-devicetree", "src")) 47 from devicetree import edtlib # pylint: disable=unused-import 77 config_re = re.compile('(CONFIG_[A-Za-z0-9_]+)[=]\"?([^\"]*)\"?$') 78 dt_re = re.compile('([A-Za-z0-9_]+)[=]\"?([^\"]*)\"?$') 82 "scripts", "schemas", "twister", "testsuite-schema.yaml")) 85 "scripts", "schemas", "twister", "quarantine-schema.yaml")) 87 …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 42 …ckages = [pkg.project_name for pkg in pkg_resources.working_set] # pylint: disable=not-an-iterable 43 PYTEST_PLUGIN_INSTALLED = 'pytest-twister-harness' in installed_packages 57 $ ./scripts/twister -v \\ 58 --testsuite-root tests/ztest/base \\ 59 --testsuite-root tests/kernel \\ 60 --test tests/ztest/base/testing.ztest.verbose_0 \\ 61 --test tests/kernel/fifo/fifo_api/kernel.fifo 73 device = parser.add_mutually_exclusive_group(required="--device-testing" in sys.argv) 84 "-E", [all …]
|
/Zephyr-Core-3.5.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 39 # 1. Zephyr-aware extensions 44 # "zephyr". zephyr is a catch-all CMake library for source files that 46 # compiler flags that all zephyr source files use. 47 # [0] https://cmake.org/cmake/help/latest/manual/cmake-buildsystem.7.html 61 # As a very high-level introduction here are two call graphs that are 67 # zephyr_library_compile_options() --> target_compile_options() [all …]
|
/Zephyr-Core-3.5.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.5.0/doc/develop/test/ |
D | twister.rst | 21 When using (at least) one ``-v`` option, twister's console output 26 - The test is marked as ``build_only: true`` in its ``.yaml`` 28 - The test configuration has defined a ``harness`` but you don't have 30 - The target device is not connected and not available for flashing 31 - You or some higher level automation invoked twister with 32 ``--build-only``. 38 .. group-tab:: Linux 40 .. code-block:: bash 42 $ source zephyr-env.sh 45 .. group-tab:: Windows [all …]
|
/Zephyr-Core-3.5.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. 176 * @brief Read a 32-bit word from an endpoint's configuration space. 187 * @brief Write a 32-bit word to an endpoint's configuration space. 208 /** Scan all available PCI host controllers and sub-busses */ [all …]
|
/Zephyr-Core-3.5.0/doc/releases/ |
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.5.0/doc/contribute/coding_guidelines/ |
D | index.rst | 13 but not enforced. Rules are not yet enforced in CI and pull-requests cannot be 39 The coding guideline rules are based on MISRA-C 2012 and are a subset of MISRA-C. 47 available through the project. If you need a copy of MISRA-C 2012, please 53 .. list-table:: Main rules 54 :header-rows: 1 57 * - MISRA C 2012 58 - Severity 59 - Description 60 - CERT C 61 - Example [all …]
|
/Zephyr-Core-3.5.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 …]
|