Home
last modified time | relevance | path

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

12345678910>>...32

/Zephyr-Core-3.7.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 …]
/Zephyr-Core-3.7.0/.github/workflows/
Dbsim-tests.yaml87 - name: Check common triggering files
88 uses: tj-actions/changed-files@v44
89 id: check-common-files
91 files: |
102 - name: Check if Bluethooth files changed
103 uses: tj-actions/changed-files@v44
104 id: check-bluetooth-files
106 files: |
111 - name: Check if Networking files changed
112 uses: tj-actions/changed-files@v44
[all …]
/Zephyr-Core-3.7.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.7.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.7.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.7.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.7.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.7.0/subsys/logging/backends/
DKconfig.fs29 bool "Old log files overwrite"
32 When enabled backend overwrites oldest log files.
39 User defined name of log files saved in the file system.
46 Directory to which log files will be written.
56 int "Max number of files containing logs"
59 Limit of number of files with logs. It is also limited by
/Zephyr-Core-3.7.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.7.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.7.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.7.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.7.0/soc/nxp/imxrt/imxrt10xx/
DCMakeLists.txt11 zephyr_code_relocate(FILES power.c LOCATION ITCM_TEXT)
14 zephyr_code_relocate(FILES lpm_rt1064 LOCATION ITCM_TEXT)
21 zephyr_code_relocate(FILES flexspi.c LOCATION ITCM_TEXT)
/Zephyr-Core-3.7.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.7.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.7.0/doc/develop/west/
Dzephyr-cmds.rst63 application CMakeLists.txt files that are outside of your workspace will be
78 from source files to the corresponding generated build files.
79 ``SPDX-License-Identifier`` comments in source files are scanned and filled
110 - :file:`app.spdx`: BOM for the application source files used for the build
111 - :file:`zephyr.spdx`: BOM for the specific Zephyr source code files used for the build
112 - :file:`build.spdx`: BOM for the built output files
122 source files that are compiled to generate the built library files.
135 files (e.g. ``.c``, ``.S``) in the bills-of-materials, also attempt to
136 determine the specific header files that are included for each ``.c`` file.
143 document, :file:`sdk.spdx`, which lists header files included from the SDK.
[all …]
/Zephyr-Core-3.7.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.7.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.7.0/modules/trusted-firmware-m/nordic/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.7.0/modules/trusted-firmware-m/nordic/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.7.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.7.0/samples/subsys/usb/mass/
Dsample.yaml65 - "End of files"
90 - "End of files"
116 - "End of files"
138 - "End of files"
161 - "End of files"
186 - "End of files"
/Zephyr-Core-3.7.0/cmake/modules/
Dhwm_v2.cmake8 # The result from list_hardware.py is then used to generate Kconfig files for
11 # The following files are generated in '<kconfig-binary-dir>/soc'
12 # - Kconfig.defconfig: Contains references to SoC defconfig files for Zephyr integration.
13 # - Kconfig: Contains references to regular SoC Kconfig files for Zephyr integration.
14 # - Kconfig.soc: Contains references to generic SoC Kconfig files.
15 # - Kconfig.sysbuild: Contains references to SoC sysbuild Kconfig files.
18 # - Kconfig: Contains references to regular arch Kconfig files for Zephyr integration.
26 # Internal helper function for creation of Kconfig files.
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 # - DTS_INCLUDE_FILES is set to a ;-list of all devicetree files
62 # system will be regenerated if any of those files change)
64 # will be ready for use in other CMake list files that run
68 # - BINARY_DIR_INCLUDE_GENERATED: where to put generated include files
69 # - KCONFIG_BINARY_DIR: where to put generated Kconfig files
76 # - DTC_OVERLAY_FILE: list of devicetree overlay files which will be
[all …]

12345678910>>...32