Home
last modified time | relevance | path

Searched full:files (Results 1 – 25 of 718) sorted by relevance

12345678910>>...29

/Zephyr-Core-3.6.0/scripts/ci/
Dtags.yaml1 # 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 …]
Dtest_plan.py5 # A script to generate twister options based on modified files.
321 # tag._match_fn(path) tests if the path matches files and/or
322 # files-regex
323 tag._match_fn = _get_match_fn(x.get("files"), x.get("files-regex"))
325 # Like tag._match_fn(path), but for files-exclude and
326 # files-regex-exclude
328 _get_match_fn(x.get("files-exclude"), x.get("files-regex-exclude"))
364 # or if not all modified files were resolved (corresponding scope found)
384 description="Generate twister argument files based on modified file",
388 parser.add_argument('-m', '--modified-files', default=None,
[all …]
/Zephyr-Core-3.6.0/
DMAINTAINERS.yml35 # 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 …]
D.gitattributes1 # used to remove files from deployment using `git archive`
2 # git files
7 # Tell git to not diff certain files
10 # Tell linguist that generated test pattern files should not be included in the
/Zephyr-Core-3.6.0/tests/application_development/code_relocation/
DCMakeLists.txt18 zephyr_code_relocate(FILES src/test_file1.c ${SRAM2_PHDR} LOCATION SRAM2)
20 zephyr_code_relocate(FILES ${CMAKE_CURRENT_SOURCE_DIR}/src/test_file2.c ${RAM_PHDR} LOCATION RAM)
29 # Test support for a simple generator expression to relocate two files
33 zephyr_code_relocate(FILES ${genex_expr} LOCATION SRAM2)
35 zephyr_code_relocate(FILES src/test_file3.c LOCATION SRAM2_LITERAL)
36 zephyr_code_relocate(FILES src/test_file3.c LOCATION SRAM2_TEXT)
37 zephyr_code_relocate(FILES src/test_file3.c LOCATION RAM_DATA)
38 zephyr_code_relocate(FILES src/test_file3.c LOCATION SRAM2_BSS)
42 zephyr_code_relocate(FILES ${ZEPHYR_BASE}/kernel/sem.c ${RAM_PHDR} LOCATION RAM NOKEEP)
45 zephyr_code_relocate(FILES ${ZEPHYR_BASE}/lib/libc/minimal/source/string/string.c
/Zephyr-Core-3.6.0/doc/build/dts/
Dintro-input-output.rst1 .. _devicetree-in-out-files:
3 Input and output files
6 This section describes the input and output files shown in the figure in
12 Devicetree input (green) and output (yellow) files
14 .. _dt-input-files:
16 Input files
19 There are four types of devicetree input files:
26 The devicetree files inside the :file:`zephyr` directory look like this:
39 :file:`BOARD.dts` includes one or more ``.dtsi`` files. These ``.dtsi`` files
41 ``.dtsi`` files. They can also describe other common hardware features shared by
[all …]
/Zephyr-Core-3.6.0/doc/kernel/
Dcode-relocation.rst9 required files and place them in the required memory region. The memory region
15 of ``__attribute__((section("name")))`` for a bunch of files together.
31 ``code_relocation.c`` files. The ``linker_relocate.ld`` file creates
33 selected files.
55 all the files that need relocation.
57 ``zephyr_code_relocate(FILES src/*.c LOCATION SRAM2)``
59 Where the first argument is the file/files and the second
76 zephyr_code_relocate(FILES src/file1.c LOCATION SRAM2)
77 zephyr_code_relocate(FILES src/file2.c LOCATION SRAM)
85 zephyr_code_relocate(FILES src/file1.c LOCATION SRAM2_DATA)
[all …]
/Zephyr-Core-3.6.0/.github/workflows/
Dbsim-tests.yaml86 - name: Check common triggering files
87 uses: tj-actions/changed-files@v41
88 id: check-common-files
90 files: |
101 - name: Check if Bluethooth files changed
102 uses: tj-actions/changed-files@v41
103 id: check-bluetooth-files
105 files: |
110 - name: Check if Networking files changed
111 uses: tj-actions/changed-files@v41
[all …]
/Zephyr-Core-3.6.0/samples/boards/intel_adsp/code_relocation/
DCMakeLists.txt10 zephyr_code_relocate(FILES src/reloc.c LOCATION SRAM2_LITERAL)
11 zephyr_code_relocate(FILES src/reloc.c LOCATION SRAM2_TEXT)
12 zephyr_code_relocate(FILES src/reloc.c LOCATION SRAM3_DATA)
13 zephyr_code_relocate(FILES src/reloc.c LOCATION SRAM3_RODATA)
14 zephyr_code_relocate(FILES src/reloc.c LOCATION SRAM4_BSS)
/Zephyr-Core-3.6.0/subsys/logging/backends/
DKconfig.fs28 bool "Old log files overwrite"
31 When enabled backend overwrites oldest log files.
38 User defined name of log files saved in the file system.
45 Directory to which log files will be written.
55 int "Max number of files containing logs"
58 Limit of number of files with logs. It is also limited by
/Zephyr-Core-3.6.0/scripts/
Dget_maintainer.py7 Lists maintainers for files or commits. Similar in function to
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 "
115 help="List orphaned files (files that do not appear in any area)")
120 help="Limit to files under PATH")
198 # area._match_fn(path) tests if the path matches files and/or
199 # files-regex
201 _get_match_fn(area_dict.get("files"),
202 area_dict.get("files-regex"))
[all …]
/Zephyr-Core-3.6.0/subsys/usb/usb_c/
DCMakeLists.txt5 # Common USB-C Stack files
15 # Sink USB-C Stack files
22 # Source USB-C Stack files
/Zephyr-Core-3.6.0/scripts/build/
Dparse_syscalls.py13 C or header files, and building up a database of system calls and their
68 # Get the list of header files which contains syscalls to be emitted.
90 # Look for source files under various directories.
92 # other header files. We must generate the associated syscall
93 # header files (e.g. for function stubs).
95 for root, dirs, files in os.walk(base_path, topdown=True):
97 files.sort()
98 for fn in files:
116 # Parse files to extract syscall functions
164 help="Include directories recursively scanned for .h files "
[all …]
/Zephyr-Core-3.6.0/submanifests/
DREADME.txt1 This directory can contain additional west manifest files. Any files
10 …roject.org/latest/guides/west/manifest.html#example-2-2-downstream-with-directory-of-manifest-files
/Zephyr-Core-3.6.0/doc/develop/west/
Dzephyr-cmds.rst62 application CMakeLists.txt files that are outside of your workspace will be
77 from source files to the corresponding generated build files.
78 ``SPDX-License-Identifier`` comments in source files are scanned and filled
109 - :file:`app.spdx`: BOM for the application source files used for the build
110 - :file:`zephyr.spdx`: BOM for the specific Zephyr source code files used for the build
111 - :file:`build.spdx`: BOM for the built output files
119 source files that are compiled to generate the built library files.
132 files (e.g. ``.c``, ``.S``) in the bills-of-materials, also attempt to
133 determine the specific header files that are included for each ``.c`` file.
140 document, :file:`sdk.spdx`, which lists header files included from the SDK.
[all …]
/Zephyr-Core-3.6.0/samples/application_development/code_relocation_nocopy/
DCMakeLists.txt12 zephyr_code_relocate(FILES src/ext_code.c LOCATION EXTFLASH_TEXT NOCOPY)
15 zephyr_code_relocate(FILES src/ext_code.c LOCATION RAM_DATA)
18 zephyr_code_relocate(FILES src/sram_code.c LOCATION RAM)
/Zephyr-Core-3.6.0/samples/subsys/fs/fs_sample/
DKconfig11 bool "When no files are found on mounted partition create some"
14 In case when no files could be listed, because there are none,
19 easily add files with use of other device.
/Zephyr-Core-3.6.0/soc/arm/nxp_imx/rt/
DCMakeLists.txt34 zephyr_code_relocate(FILES flexspi_rt10xx.c LOCATION ITCM_TEXT)
42 zephyr_code_relocate(FILES flexspi_rt11xx.c LOCATION ITCM_TEXT)
48 zephyr_code_relocate(FILES power_rt10xx.c LOCATION ITCM_TEXT)
51 zephyr_code_relocate(FILES lpm_rt1064.c LOCATION ITCM_TEXT)
/Zephyr-Core-3.6.0/doc/develop/application/
Dindex.rst31 The main zephyr repository contains Zephyr's source code, configuration files,
36 The files in the **application directory** link Zephyr and any modules with the
37 application. This directory contains all application-specific files, such as
38 application-specific configuration files and source code.
40 Here are the files in a simple Zephyr application:
55 application files, and links the application directory with Zephyr's CMake
57 such as board-specific configuration files, the ability to run and
66 more devicetree overlays, and other default files are also searched for.
77 Kconfig fragments, and other default files are also searched for.
87 * **main.c**: A source code file. Applications typically contain source files
[all …]
/Zephyr-Core-3.6.0/doc/build/snippets/
Dwriting.rst10 Snippets are defined using YAML files named :file:`snippet.yml`.
70 :file:`snippet.yml` files underneath a subdirectory named :file:`snippets/`,
74 system will look for :file:`snippet.yml` files underneath the following
80 The :file:`snippet.yml` files can be nested anywhere underneath these
94 And then any :file:`snippet.yml` files in ``baz/snippets`` will
124 This principle applies to both Kconfig fragments (``.conf`` files) and
125 devicetree overlays (``.overlay`` files).
143 .. _snippets-conf-files:
145 ``.conf`` files
180 application with both :file:`prj.conf` and :file:`boards/foo.conf` files will
[all …]
/Zephyr-Core-3.6.0/scripts/west_commands/zspdx/
Dscanner.py21 # Package's license, based on the licenses of its Files?
24 # when assembling a Package's Files' data, should we auto-conclude
32 # should we calculate SHA256 hashes for each Package's Files?
36 # should we calculate MD5 hashes for each Package's Files?
101 Calculate the SPDX Package Verification Code for all files in the package.
108 for f in pkg.files.values():
140 for f in pkg.files.values():
175 Scan for licenses and calculate hashes for all Files and Packages
183 log.inf(f"scanning files in package {pkg.cfg.name} in document {doc.cfg.name}")
186 for f in pkg.files.values():
/Zephyr-Core-3.6.0/modules/trusted-firmware-m/nordic_nrf/nrf9120/
DCMakeLists.txt13 install(FILES ${CMAKE_CURRENT_LIST_DIR}/ns/cpuarch_ns.cmake
17 install(FILES ${Trusted\ Firmware\ M_SOURCE_DIR}/platform/ext/target/nordic_nrf/common/nrf912…
20 install(FILES config.cmake
/Zephyr-Core-3.6.0/modules/trusted-firmware-m/nordic_nrf/nrf9160/
DCMakeLists.txt13 install(FILES ${CMAKE_CURRENT_LIST_DIR}/ns/cpuarch_ns.cmake
17 install(FILES ${Trusted\ Firmware\ M_SOURCE_DIR}/platform/ext/target/nordic_nrf/common/nrf916…
20 install(FILES config.cmake
/Zephyr-Core-3.6.0/cmake/modules/
Ddts.cmake15 # - To Zephyr and application source code files, as a C macro API
25 # - To CMake files, after this module has finished running, using
28 # - To Kconfig files, both using some Kconfig symbols we generate
36 # files in scripts/dts to make all this work. We also optionally will
60 # - the build system will be regenerated if any devicetree files
63 # will be ready for use in other CMake list files that run
67 # - BINARY_DIR_INCLUDE_GENERATED: where to put generated include files
68 # - KCONFIG_BINARY_DIR: where to put generated Kconfig files
75 # - DTC_OVERLAY_FILE: list of devicetree overlay files which will be
77 # - EXTRA_DTC_OVERLAY_FILE: list of extra devicetree overlay files.
[all …]
/Zephyr-Core-3.6.0/samples/subsys/usb/mass/
Dsample.yaml60 - "End of files"
85 - "End of files"
111 - "End of files"
132 - "End of files"
157 - "End of files"

12345678910>>...29