Home
last modified time | relevance | path

Searched full:projects (Results 1 – 25 of 99) sorted by relevance

1234

/Zephyr-Core-3.5.0/doc/develop/manifest/
Dindex.rst5 West Projects index
11 Active Projects/Modules
14 The projects below are enabled by default and will be downloaded when you
15 call `west update`. Many of the projects or modules listed below are
25 .. manifest-projects-table::
28 Inactive and Optional Projects/Modules
32 The projects below are optional and will not be downloaded when you
33 call `west update`. You can add any of the the projects or modules listed below
42 .. manifest-projects-table::
45 External Projects/Modules
[all …]
/Zephyr-Core-3.5.0/doc/_extensions/zephyr/
Dmanifest_projects_table.py5 This extension allows to render a table containing the revisions of the projects
11 This extension introduces a new directive: ``manifest-projects-table``. It can
14 .. manifest-projects-table::
74 projects = []
75 for project in manifest.projects:
79 projects.append(project)
81 projects.append(project)
83 projects.append(project)
107 for project in projects:
135 directives.register_directive("manifest-projects-table", ManifestProjectsTable)
Dlink-roles.py79 projects = [p.name for p in west_manifest.projects] if west_manifest else []
80 if module in projects:
/Zephyr-Core-3.5.0/doc/develop/west/
Dbasics.rst9 West's built-in commands allow you to work with *projects* (Git
29 │ # Projects managed by west:
34 └── [ ... other projects ...]
76 The manifest file is a YAML file that defines *projects*, which are the
82 workspace's projects based on the contents of the manifest file.
84 projects
85 Projects are Git repositories managed by west. Projects are defined in the
87 example workspace, ``zcbor`` and ``net-tools`` are projects.
90 the locations of all the projects in the workspace, so any code they contain
91 can be used as :ref:`modules`. Note however that modules and projects
[all …]
Dmanifest.rst48 - Projects can be added (like ``P1`` between manifest repository
68 the projects it cares about. This can be relaxed by using a branch
85 projects:
86 # a list of projects managed by west
101 ``projects``, and ``self``. In YAML terms, the value of the ``manifest`` key is
105 The ``projects`` value is a list of repositories managed by west and associated
107 section, which can be used to save typing in the ``projects`` list.
113 where projects can be fetched from.
118 below, projects can also specify their complete fetch URLs.)
154 .. _west-manifests-projects:
[all …]
Dbuilt-in.rst13 Some commands take projects as arguments. These arguments can be project
17 to using all projects in the manifest file plus the manifest repository
91 **Which projects are updated:**
96 only the active projects are updated.
98 To operate on a subset of projects only, give ``PROJECT`` argument(s). Each
101 projects explicitly, they are updated regardless of whether they are active.
157 ``west update --rebase`` will fail in projects that have git conflicts
168 never fails either but does not treat all projects the same:
170 - in projects where your branch diverged from the incoming commits, it
173 - in all other projects where no rebase or merge is needed it keeps
[all …]
Dworkspaces.rst81 To use this helper on just the projects ``foo`` and ``bar``, run:
139 Projects can be located anywhere inside the workspace, but they may not
144 projects must have paths inside the workspace.
178 and names other projects required to build it in its :file:`west.yml`. This
181 the super-project, zephyr and other projects as submodules
216 projects:
240 projects:
256 imported projects separately. In the above example, using ``import`` means
267 and specifies a list of projects all at the same "level"
298 v2.5.0 and its modules, then add the ``app1`` and ``app2`` projects:
[all …]
Drelease-notes.rst267 - ``west status`` now only prints output for projects which have a nonempty
279 :ref:`west-manifests-projects` for examples.
330 - ``west update`` now synchronizes Git submodules in projects by default. This
427 enabled and disabled to determine what projects are "active", and therefore
431 - ``west update`` no longer updates inactive projects by default. It now
436 with no arguments does not print information for inactive projects by
437 default. If the user specifies a list of projects explicitly at the command
441 projects, even inactive ones.
629 commands can operate on multiple projects; if a subprocess related to one
631 projects. All of them also now report a nonzero error code from the west
[all …]
/Zephyr-Core-3.5.0/scripts/west_commands/completion/
Dwest-completion.fish134 # return the list of projects
138 set -l projects
150 set projects (west "-z $zephyr_base" list --format="{name}")
152 set projects (west list --format="{name}")
155 printf "%s\n" $projects
161 "update" "update projects described in west manifest" \
162 "list" "print information about projects" \
164 "diff" '"git diff" for one or more projects' \
165 "status" '"git status" for one or more projects' \
166 "forall" "run a command in one or more local projects" \
[all …]
Dwest-completion.zsh14 'update[update projects described in west manifest]'
15 'list[print information about projects]'
17 'diff["git diff" for one or more projects]'
18 'status["git status" for one or more projects]'
19 'forall[run a command in one or more local projects]'
139 {-a,--all}'[include inactive projects]'
162 {-a,--all}'[include inactive projects]'
171 {-a,--all}'[include inactive projects]'
181 {-a,--all}'[include inactive projects]'
/Zephyr-Core-3.5.0/scripts/
Dzephyr_module.py7 '''Tool for parsing a list of projects to determine if they are Zephyr
8 projects. If no projects are given then the output from `west list` will be
404 # Process zephyr_base, projects, and modules and create a dictionary
410 # - west-projects: path and revision
456 projects = west_projs['projects']
460 manifest_proj_path = PurePath(projects[0].posixpath).as_posix()
467 for project in projects[1:]:
479 'projects': meta_projects}})
519 projects = []
526 # West is not installed, so don't return any projects.
[all …]
/Zephyr-Core-3.5.0/doc/build/
Dzephyr_cmake_package.rst107 <projects>/zephyr-workspace/zephyr
111 in this example, ``hello_world`` will use ``<projects>/zephyr-workspace/zephyr``.
119 <projects>/zephyr-workspace
125 in this example, ``my_first_app`` will use ``<projects>/zephyr-workspace/zephyr`` as this Zephyr
137 <projects>/zephyr-workspace-1
140 <projects>/zephyr-workspace-2
149 in this example, only ``<projects>/zephyr-workspace-2/zephyr`` is exported to the CMake package
153 If user wants to test the application with ``<projects>/zephyr-workspace-1/zephyr``, this can be
155 ``ZEPHYR_BASE=<projects>/zephyr-workspace-1/zephyr``, before
195 <projects>/zephyr-workspace-2.a
[all …]
/Zephyr-Core-3.5.0/doc/templates/
Dsample.tmpl19 [For simple projects, a description of how to wire the board for the demo. For
20 complex projects, provide a graphic with more details, preferably using
/Zephyr-Core-3.5.0/doc/contribute/
Dexternal.rst8 available in other open source projects.
31 Integrating code into the Zephyr Project from other projects that use a license
122 Standalone or loose integration of modules/projects without any incoming
124 projects that provide value to users directly and through a Zephyr subsystem or
128 Such optional projects might include samples and tests in their own repositories.
240 :ref:`modules-vs-projects` for additional information on the differences.
247 :file:`west.yml` manifest. More info on optional projects can be found in
257 In general, any additions or removals whatsoever to the ``projects:`` section of
262 - Adding and removing projects
/Zephyr-Core-3.5.0/submanifests/
Dexample.yaml.sample15 projects:
Doptional.yaml5 projects:
/Zephyr-Core-3.5.0/scripts/west_commands/zspdx/
Dcmakefileapijson.py113 projects_arr = cfg_dict.get("projects", [])
122 cfg.projects.append(prj)
344 for cfgPrj in cfg.projects:
360 cfgDir.project = cfg.projects[cfgDir.projectIndex]
376 cfgPrj.parent = cfg.projects[cfgPrj.parentIndex]
380 cfgPrj.children.append(cfg.projects[childIndex])
401 cfgTarget.project = cfg.projects[cfgTarget.projectIndex]
/Zephyr-Core-3.5.0/drivers/timer/
DKconfig.cavs8 # symbiotic relationship between these two projects, that from
/Zephyr-Core-3.5.0/scripts/dts/
DREADME.txt10 projects.
/Zephyr-Core-3.5.0/doc/develop/
Dmodules.rst3 Modules (External projects)
6 Zephyr relies on the source code of several externally maintained projects in
41 .. _modules-vs-projects:
43 Modules vs west projects
46 Zephyr modules, described in this page, are not the same as :ref:`west projects
55 :ref:`West projects <west-manifests-projects>` are entries in the `projects:`
57 West projects are often also modules, but not always. There are west projects
64 The contents of this page only apply to modules, and not to west projects in
79 tracking external projects (hosted in Git repositories); such modules
386 Certain external projects provide test suites that reside in the upstream
[all …]
/Zephyr-Core-3.5.0/boards/nios2/altera_max10/doc/
Dindex.rst229 Reading symbols from /projects/zephyr/samples/hello_world/build/zephyr/zephyr.elf...done.
234 isr_tables_syms () at /projects/zephyr/arch/common/isr_tables.c:63
237 Breakpoint 1 at 0xdf0: file /projects/zephyr/arch/nios2/core/prep_c.c, line 36.
239 Breakpoint 2 at 0x1254: file /projects/zephyr/kernel/init.c, line 348.
243 Breakpoint 2, _Cstart () at /projects/zephyr/kernel/init.c:348
/Zephyr-Core-3.5.0/.github/ISSUE_TEMPLATE/
D003_rfc-proposal.md42 modifications in other areas), or other teams/projects.
/Zephyr-Core-3.5.0/scripts/pylint/checkers/
Dargparse-checker.py23 "abbreviations and prevent issues with these being used by projects"
/Zephyr-Core-3.5.0/scripts/ci/
Dtest_plan.py136 old_projs = set((p.name, p.revision) for p in old_manifest.projects)
137 new_projs = set((p.name, p.revision) for p in new_manifest.projects)
140 # Removed projects
143 # Updated projects
146 # Added projects
/Zephyr-Core-3.5.0/
DREADME.rst13 <a href="https://bestpractices.coreinfrastructure.org/projects/74"><img
14 src="https://bestpractices.coreinfrastructure.org/projects/74/badge"></a>

1234