Searched +full:files +full:- +full:exclude (Results 1 – 18 of 18) sorted by relevance
/Zephyr-Core-3.4.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. 54 # return search(). (?:) is a non-capturing group. 112 cmd = ["scripts/twister", "-c"] + options + ["--save-tests", fname ] 114 cmd.append("--integration") 145 _options.extend(["-a", arch ]) 151 _options.extend(["-p", platform]) 168 # Limit search to $ZEPHYR_BASE since this is where the changed files are 184 _options.extend(["-p", board ]) 206 _options.extend(["-T", t ]) [all …]
|
D | check_compliance.py | 5 # SPDX-License-Identifier: Apache-2.0 46 f"{cp.stdout.decode('utf-8')}\n" 48 f"{cp.stderr.decode('utf-8')}\n") 50 return cp.stdout.decode("utf-8").rstrip() 59 return git('rev-list', 60 f'--max-count={-1 if "." in refspec else 1}', refspec).split() 63 filter_arg = (f'--diff-filter={filter}',) if filter else () 64 paths_arg = ('--', *paths) if paths else () 65 out = git('diff', '--name-only', *filter_arg, COMMIT_RANGE, *paths_arg) 66 files = out.splitlines() [all …]
|
/Zephyr-Core-3.4.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 | 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.4.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.4.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.4.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.4.0/scripts/pylib/twister/twisterlib/ |
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 …]
|
D | testplan.py | 5 # SPDX-License-Identifier: Apache-2.0 26 print("Install the anytree module to use the --test-tree option") 42 # This is needed to load edt.pickle files. 44 "python-devicetree", "src")) 45 from devicetree import edtlib # pylint: disable=unused-import 69 config_re = re.compile('(CONFIG_[A-Za-z0-9_]+)[=]\"?([^\"]*)\"?$') 70 dt_re = re.compile('([A-Za-z0-9_]+)[=]\"?([^\"]*)\"?$') 74 "scripts", "schemas", "twister", "testsuite-schema.yaml")) 77 "scripts", "schemas", "twister", "quarantine-schema.yaml")) 79 …tc_schema_path = os.path.join(ZEPHYR_BASE, "scripts", "schemas", "twister", "test-config-schema.ya… [all …]
|
/Zephyr-Core-3.4.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 …]
|
/Zephyr-Core-3.4.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.4.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.4.0/include/zephyr/drivers/pcie/ |
D | pcie.h | 4 * SPDX-License-Identifier: Apache-2.0 12 #include <zephyr/dt-bindings/pcie/pcie.h> 27 * in include/dt-bindings/pcie/pcie.h: see PCIE_BDF() and friends, since 38 * look to PCIE_ID_* macros in include/dt-bindings/pcie/pcie.h for more. 42 /* Helper macro to exclude invalid PCIe identifiers. We should really only 110 * Initialize PCIe-related information within a specific instance of 151 * These functions are arch-, board-, or SoC-specific. 169 * @brief Read a 32-bit word from an endpoint's configuration space. 180 * @brief Write a 32-bit word to an endpoint's configuration space. 201 /** Scan all available PCI host controllers and sub-busses */ [all …]
|
/Zephyr-Core-3.4.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-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.4.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.4.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 …]
|