blob: 262d5cb203f442b4fc4552784ac9f696c17f80b9 [file] [log] [blame]
Andrew Geisslerf0343792020-11-18 10:42:21 -06001.. SPDX-License-Identifier: CC-BY-SA-2.0-UK
Andrew Geisslerc9f78652020-09-18 14:11:35 -05002
3*****************************************
4The Yocto Project Development Environment
5*****************************************
6
7This chapter takes a look at the Yocto Project development environment.
8The chapter provides Yocto Project Development environment concepts that
9help you understand how work is accomplished in an open source
10environment, which is very different as compared to work accomplished in
11a closed, proprietary environment.
12
13Specifically, this chapter addresses open source philosophy, source
14repositories, workflows, Git, and licensing.
15
16Open Source Philosophy
17======================
18
19Open source philosophy is characterized by software development directed
20by peer production and collaboration through an active community of
21developers. Contrast this to the more standard centralized development
22models used by commercial software companies where a finite set of
23developers produces a product for sale using a defined set of procedures
24that ultimately result in an end product whose architecture and source
25material are closed to the public.
26
27Open source projects conceptually have differing concurrent agendas,
28approaches, and production. These facets of the development process can
29come from anyone in the public (community) who has a stake in the
30software project. The open source environment contains new copyright,
31licensing, domain, and consumer issues that differ from the more
32traditional development environment. In an open source environment, the
33end product, source material, and documentation are all available to the
34public at no cost.
35
36A benchmark example of an open source project is the Linux kernel, which
37was initially conceived and created by Finnish computer science student
38Linus Torvalds in 1991. Conversely, a good example of a non-open source
39project is the Windows family of operating systems developed by
40Microsoft Corporation.
41
Patrick Williams7784c422022-11-17 07:29:11 -060042Wikipedia has a good :wikipedia:`historical description of the Open Source
43Philosophy <Open_source>`. You can also find helpful information on how
44to participate in the Linux Community
Andrew Geisslerc3d88e42020-10-02 09:45:00 -050045`here <https://www.kernel.org/doc/html/latest/process/index.html>`__.
Andrew Geisslerc9f78652020-09-18 14:11:35 -050046
Andrew Geisslerc9f78652020-09-18 14:11:35 -050047The Development Host
48====================
49
50A development host or :term:`Build Host` is key to
51using the Yocto Project. Because the goal of the Yocto Project is to
52develop images or applications that run on embedded hardware,
53development of those images and applications generally takes place on a
Andrew Geissler615f2f12022-07-15 14:00:58 -050054system not intended to run the software --- the development host.
Andrew Geisslerc9f78652020-09-18 14:11:35 -050055
56You need to set up a development host in order to use it with the Yocto
57Project. Most find that it is best to have a native Linux machine
58function as the development host. However, it is possible to use a
59system that does not run Linux as its operating system as your
60development host. When you have a Mac or Windows-based system, you can
61set it up as the development host by using
62`CROPS <https://github.com/crops/poky-container>`__, which leverages
63`Docker Containers <https://www.docker.com/>`__. Once you take the steps
64to set up a CROPS machine, you effectively have access to a shell
65environment that is similar to what you see when using a Linux-based
66development host. For the steps needed to set up a system using CROPS,
67see the
Andrew Geissler09209ee2020-12-13 08:44:15 -060068":ref:`dev-manual/start:setting up to use cross platforms (crops)`"
Andrew Geisslerc9f78652020-09-18 14:11:35 -050069section in
70the Yocto Project Development Tasks Manual.
71
72If your development host is going to be a system that runs a Linux
William A. Kennington IIIac69b482021-06-02 12:28:27 -070073distribution, you must still take steps to prepare the system
Andrew Geisslerc9f78652020-09-18 14:11:35 -050074for use with the Yocto Project. You need to be sure that the Linux
75distribution on the system is one that supports the Yocto Project. You
76also need to be sure that the correct set of host packages are installed
77that allow development using the Yocto Project. For the steps needed to
78set up a development host that runs Linux, see the
Andrew Geissler09209ee2020-12-13 08:44:15 -060079":ref:`dev-manual/start:setting up a native linux host`"
Andrew Geisslerc9f78652020-09-18 14:11:35 -050080section in the Yocto Project Development Tasks Manual.
81
William A. Kennington IIIac69b482021-06-02 12:28:27 -070082Once your development host is set up to use the Yocto Project, there
83are several ways of working in the Yocto Project environment:
Andrew Geisslerc9f78652020-09-18 14:11:35 -050084
85- *Command Lines, BitBake, and Shells:* Traditional development in the
86 Yocto Project involves using the :term:`OpenEmbedded Build System`,
87 which uses
88 BitBake, in a command-line environment from a shell on your
89 development host. You can accomplish this from a host that is a
90 native Linux machine or from a host that has been set up with CROPS.
91 Either way, you create, modify, and build images and applications all
92 within a shell-based environment using components and tools available
93 through your Linux distribution and the Yocto Project.
94
95 For a general flow of the build procedures, see the
Andrew Geissler517393d2023-01-13 08:55:19 -060096 ":ref:`dev-manual/building:building a simple image`"
Andrew Geisslerc9f78652020-09-18 14:11:35 -050097 section in the Yocto Project Development Tasks Manual.
98
99- *Board Support Package (BSP) Development:* Development of BSPs
100 involves using the Yocto Project to create and test layers that allow
101 easy development of images and applications targeted for specific
102 hardware. To development BSPs, you need to take some additional steps
103 beyond what was described in setting up a development host.
104
Andrew Geissler09209ee2020-12-13 08:44:15 -0600105 The :doc:`/bsp-guide/index` provides BSP-related development
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500106 information. For specifics on development host preparation, see the
107 ":ref:`bsp-guide/bsp:preparing your build host to work with bsp layers`"
108 section in the Yocto Project Board Support Package (BSP) Developer's
109 Guide.
110
111- *Kernel Development:* If you are going to be developing kernels using
112 the Yocto Project you likely will be using ``devtool``. A workflow
113 using ``devtool`` makes kernel development quicker by reducing
114 iteration cycle times.
115
Andrew Geissler09209ee2020-12-13 08:44:15 -0600116 The :doc:`/kernel-dev/index` provides kernel-related
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500117 development information. For specifics on development host
118 preparation, see the
Andrew Geissler09209ee2020-12-13 08:44:15 -0600119 ":ref:`kernel-dev/common:preparing the build host to work on the kernel`"
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500120 section in the Yocto Project Linux Kernel Development Manual.
121
122- *Using Toaster:* The other Yocto Project development method that
123 involves an interface that effectively puts the Yocto Project into
124 the background is Toaster. Toaster provides an interface to the
125 OpenEmbedded build system. The interface enables you to configure and
126 run your builds. Information about builds is collected and stored in
127 a database. You can use Toaster to configure and start builds on
128 multiple remote build servers.
129
130 For steps that show you how to set up your development host to use
131 Toaster and on how to use Toaster in general, see the
Andrew Geissler09209ee2020-12-13 08:44:15 -0600132 :doc:`/toaster-manual/index`.
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500133
134Yocto Project Source Repositories
135=================================
136
137The Yocto Project team maintains complete source repositories for all
138Yocto Project files at :yocto_git:`/`. This web-based source
139code browser is organized into categories by function such as IDE
140Plugins, Matchbox, Poky, Yocto Linux Kernel, and so forth. From the
141interface, you can click on any particular item in the "Name" column and
142see the URL at the bottom of the page that you need to clone a Git
143repository for that particular item. Having a local Git repository of
144the :term:`Source Directory`, which
145is usually named "poky", allows you to make changes, contribute to the
146history, and ultimately enhance the Yocto Project's tools, Board Support
147Packages, and so forth.
148
149For any supported release of Yocto Project, you can also go to the
150:yocto_home:`Yocto Project Website <>` and select the "DOWNLOADS"
151item from the "SOFTWARE" menu and get a released tarball of the ``poky``
152repository, any supported BSP tarball, or Yocto Project tools. Unpacking
153these tarballs gives you a snapshot of the released files.
154
155.. note::
156
157 - The recommended method for setting up the Yocto Project
158 :term:`Source Directory` and the files
Andrew Geissler3b8a17c2021-04-15 15:55:55 -0500159 for supported BSPs (e.g., ``meta-intel``) is to use
160 :ref:`overview-manual/development-environment:git`
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500161 to create a local copy of the upstream repositories.
162
163 - Be sure to always work in matching branches for both the selected
164 BSP repository and the Source Directory (i.e. ``poky``)
Andrew Geissler595f6302022-01-24 19:11:47 +0000165 repository. For example, if you have checked out the "&DISTRO_NAME_NO_CAP;"
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500166 branch of ``poky`` and you are going to use ``meta-intel``, be
Andrew Geissler595f6302022-01-24 19:11:47 +0000167 sure to checkout the "&DISTRO_NAME_NO_CAP;" branch of ``meta-intel``.
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500168
169In summary, here is where you can get the project files needed for
170development:
171
Patrick Williams8e7b46e2023-05-01 14:19:06 -0500172- :yocto_git:`Source Repositories: <>` This area contains Poky, Yocto
173 documentation, metadata layers, and Linux kernel. You can create local
174 copies of Git repositories for each of these areas.
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500175
176 .. image:: figures/source-repos.png
Andrew Geisslerd5838332022-05-27 11:33:10 -0500177 :width: 100%
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500178
179 For steps on how to view and access these upstream Git repositories,
Andrew Geissler09209ee2020-12-13 08:44:15 -0600180 see the ":ref:`dev-manual/start:accessing source repositories`"
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500181 Section in the Yocto Project Development Tasks Manual.
182
Patrick Williams8e7b46e2023-05-01 14:19:06 -0500183- :yocto_dl:`Yocto release archives: </releases/yocto>` This is where you can
184 download tarballs corresponding to each Yocto Project release. Downloading
185 and extracting these files does not produce a local copy of a Git repository
186 but rather a snapshot corresponding to a particular release.
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500187
Patrick Williams8e7b46e2023-05-01 14:19:06 -0500188- :yocto_home:`DOWNLOADS page </software-overview/downloads/>`:
189 The :yocto_home:`Yocto Project website <>` includes a "DOWNLOADS" page accessible
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500190 through the "SOFTWARE" menu that allows you to download any Yocto
191 Project release, tool, and Board Support Package (BSP) in tarball
Patrick Williams8e7b46e2023-05-01 14:19:06 -0500192 form. The hyperlinks point to the tarballs under
193 :yocto_dl:`/releases/yocto/`.
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500194
195 .. image:: figures/yp-download.png
Andrew Geisslerd5838332022-05-27 11:33:10 -0500196 :width: 100%
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500197
198 For steps on how to use the "DOWNLOADS" page, see the
Andrew Geissler09209ee2020-12-13 08:44:15 -0600199 ":ref:`dev-manual/start:using the downloads page`"
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500200 section in the Yocto Project Development Tasks Manual.
201
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500202Git Workflows and the Yocto Project
203===================================
204
205Developing using the Yocto Project likely requires the use of
Andrew Geissler3b8a17c2021-04-15 15:55:55 -0500206:ref:`overview-manual/development-environment:git`.
207Git is a free, open source distributed version control
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500208system used as part of many collaborative design environments. This
209section provides workflow concepts using the Yocto Project and Git. In
210particular, the information covers basic practices that describe roles
211and actions in a collaborative development environment.
212
213.. note::
214
215 If you are familiar with this type of development environment, you
216 might not want to read this section.
217
218The Yocto Project files are maintained using Git in "branches" whose Git
219histories track every change and whose structures provide branches for
220all diverging functionality. Although there is no need to use Git, many
221open source projects do so.
222
223For the Yocto Project, a key individual called the "maintainer" is
Andrew Geissler595f6302022-01-24 19:11:47 +0000224responsible for the integrity of the development branch of a given Git
225repository. The development branch is the "upstream" repository from which
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500226final or most recent builds of a project occur. The maintainer is
227responsible for accepting changes from other developers and for
228organizing the underlying branch structure to reflect release strategies
229and so forth.
230
231.. note::
232
233 For information on finding out who is responsible for (maintains) a
234 particular area of code in the Yocto Project, see the
Andrew Geissler5082cc72023-09-11 08:41:39 -0400235 ":doc:`../contributor-guide/identify-component`"
236 section of the Yocto Project and OpenEmbedded Contributor Guide.
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500237
238The Yocto Project ``poky`` Git repository also has an upstream
239contribution Git repository named ``poky-contrib``. You can see all the
240branches in this repository using the web interface of the
241:yocto_git:`Source Repositories <>` organized within the "Poky Support"
242area. These branches hold changes (commits) to the project that have
243been submitted or committed by the Yocto Project development team and by
244community members who contribute to the project. The maintainer
245determines if the changes are qualified to be moved from the "contrib"
246branches into the "master" branch of the Git repository.
247
248Developers (including contributing community members) create and
249maintain cloned repositories of upstream branches. The cloned
250repositories are local to their development platforms and are used to
251develop changes. When a developer is satisfied with a particular feature
252or change, they "push" the change to the appropriate "contrib"
253repository.
254
255Developers are responsible for keeping their local repository up-to-date
256with whatever upstream branch they are working against. They are also
257responsible for straightening out any conflicts that might arise within
258files that are being worked on simultaneously by more than one person.
259All this work is done locally on the development host before anything is
260pushed to a "contrib" area and examined at the maintainer's level.
261
William A. Kennington IIIac69b482021-06-02 12:28:27 -0700262There is a somewhat formal method by which developers commit changes and
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500263push them into the "contrib" area and subsequently request that the
264maintainer include them into an upstream branch. This process is called
265"submitting a patch" or "submitting a change." For information on
266submitting patches and changes, see the
Andrew Geissler5082cc72023-09-11 08:41:39 -0400267":doc:`../contributor-guide/submit-changes`" section in the Yocto Project
268and OpenEmbedded Contributor Guide.
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500269
Andrew Geissler595f6302022-01-24 19:11:47 +0000270In summary, there is a single point of entry for changes into the
271development branch of the Git repository, which is controlled by the
William A. Kennington IIIac69b482021-06-02 12:28:27 -0700272project's maintainer. A set of developers independently
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500273develop, test, and submit changes to "contrib" areas for the maintainer
274to examine. The maintainer then chooses which changes are going to
275become a permanent part of the project.
276
Andrew Geisslereff27472021-10-29 15:35:00 -0500277.. image:: svg/git-workflow.*
278 :width: 100%
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500279
280While each development environment is unique, there are some best
281practices or methods that help development run smoothly. The following
282list describes some of these practices. For more information about Git
283workflows, see the workflow topics in the `Git Community
Andrew Geisslerd1e89492021-02-12 15:35:20 -0600284Book <https://book.git-scm.com>`__.
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500285
286- *Make Small Changes:* It is best to keep the changes you commit small
287 as compared to bundling many disparate changes into a single commit.
288 This practice not only keeps things manageable but also allows the
289 maintainer to more easily include or refuse changes.
290
291- *Make Complete Changes:* It is also good practice to leave the
292 repository in a state that allows you to still successfully build
293 your project. In other words, do not commit half of a feature, then
294 add the other half as a separate, later commit. Each commit should
295 take you from one buildable project state to another buildable state.
296
297- *Use Branches Liberally:* It is very easy to create, use, and delete
298 local branches in your working Git repository on the development
299 host. You can name these branches anything you like. It is helpful to
300 give them names associated with the particular feature or change on
301 which you are working. Once you are done with a feature or change and
Andrew Geissler595f6302022-01-24 19:11:47 +0000302 have merged it into your local development branch, simply discard the
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500303 temporary branch.
304
305- *Merge Changes:* The ``git merge`` command allows you to take the
306 changes from one branch and fold them into another branch. This
307 process is especially helpful when more than a single developer might
308 be working on different parts of the same feature. Merging changes
309 also automatically identifies any collisions or "conflicts" that
310 might happen as a result of the same lines of code being altered by
311 two different developers.
312
313- *Manage Branches:* Because branches are easy to use, you should use a
314 system where branches indicate varying levels of code readiness. For
315 example, you can have a "work" branch to develop in, a "test" branch
316 where the code or change is tested, a "stage" branch where changes
317 are ready to be committed, and so forth. As your project develops,
318 you can merge code across the branches to reflect ever-increasing
319 stable states of the development.
320
321- *Use Push and Pull:* The push-pull workflow is based on the concept
322 of developers "pushing" local commits to a remote repository, which
323 is usually a contribution repository. This workflow is also based on
324 developers "pulling" known states of the project down into their
325 local development repositories. The workflow easily allows you to
326 pull changes submitted by other developers from the upstream
327 repository into your work area ensuring that you have the most recent
328 software on which to develop. The Yocto Project has two scripts named
329 ``create-pull-request`` and ``send-pull-request`` that ship with the
330 release to facilitate this workflow. You can find these scripts in
Andrew Geissler5082cc72023-09-11 08:41:39 -0400331 the ``scripts`` folder of the :term:`Source Directory`. For information
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500332 on how to use these scripts, see the
Andrew Geissler5082cc72023-09-11 08:41:39 -0400333 ":ref:`contributor-guide/submit-changes:using scripts to push a change upstream and request a pull`"
334 section in the Yocto Project and OpenEmbedded Contributor Guide.
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500335
336- *Patch Workflow:* This workflow allows you to notify the maintainer
337 through an email that you have a change (or patch) you would like
Andrew Geissler595f6302022-01-24 19:11:47 +0000338 considered for the development branch of the Git repository. To send
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500339 this type of change, you format the patch and then send the email
340 using the Git commands ``git format-patch`` and ``git send-email``.
341 For information on how to use these scripts, see the
Andrew Geissler5082cc72023-09-11 08:41:39 -0400342 ":doc:`../contributor-guide/submit-changes`" section in the Yocto Project
343 and OpenEmbedded Contributor Guide.
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500344
345Git
346===
347
348The Yocto Project makes extensive use of Git, which is a free, open
349source distributed version control system. Git supports distributed
350development, non-linear development, and can handle large projects. It
351is best that you have some fundamental understanding of how Git tracks
352projects and how to work with Git if you are going to use the Yocto
353Project for development. This section provides a quick overview of how
354Git works and provides you with a summary of some essential Git
355commands.
356
357.. note::
358
359 - For more information on Git, see
Andrew Geisslerd1e89492021-02-12 15:35:20 -0600360 https://git-scm.com/documentation.
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500361
362 - If you need to download Git, it is recommended that you add Git to
363 your system through your distribution's "software store" (e.g. for
364 Ubuntu, use the Ubuntu Software feature). For the Git download
Andrew Geisslerd1e89492021-02-12 15:35:20 -0600365 page, see https://git-scm.com/download.
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500366
367 - For information beyond the introductory nature in this section,
Andrew Geissler09209ee2020-12-13 08:44:15 -0600368 see the ":ref:`dev-manual/start:locating yocto project source files`"
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500369 section in the Yocto Project Development Tasks Manual.
370
371Repositories, Tags, and Branches
372--------------------------------
373
Andrew Geissler3b8a17c2021-04-15 15:55:55 -0500374As mentioned briefly in the previous section and also in the
375":ref:`overview-manual/development-environment:git workflows and the yocto project`"
376section, the Yocto Project maintains source repositories at :yocto_git:`/`.
377If you look at this web-interface of the repositories, each item is a separate
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500378Git repository.
379
380Git repositories use branching techniques that track content change (not
381files) within a project (e.g. a new feature or updated documentation).
382Creating a tree-like structure based on project divergence allows for
383excellent historical information over the life of a project. This
384methodology also allows for an environment from which you can do lots of
385local experimentation on projects as you develop changes or new
386features.
387
388A Git repository represents all development efforts for a given project.
389For example, the Git repository ``poky`` contains all changes and
390developments for that repository over the course of its entire life.
391That means that all changes that make up all releases are captured. The
392repository maintains a complete history of changes.
393
394You can create a local copy of any repository by "cloning" it with the
395``git clone`` command. When you clone a Git repository, you end up with
396an identical copy of the repository on your development system. Once you
397have a local copy of a repository, you can take steps to develop
398locally. For examples on how to clone Git repositories, see the
Andrew Geissler09209ee2020-12-13 08:44:15 -0600399":ref:`dev-manual/start:locating yocto project source files`"
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500400section in the Yocto Project Development Tasks Manual.
401
402It is important to understand that Git tracks content change and not
403files. Git uses "branches" to organize different development efforts.
404For example, the ``poky`` repository has several branches that include
405the current "&DISTRO_NAME_NO_CAP;" branch, the "master" branch, and many
406branches for past Yocto Project releases. You can see all the branches
Andrew Geissler09209ee2020-12-13 08:44:15 -0600407by going to :yocto_git:`/poky/` and clicking on the
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500408``[...]`` link beneath the "Branch" heading.
409
410Each of these branches represents a specific area of development. The
411"master" branch represents the current or most recent development. All
412other branches represent offshoots of the "master" branch.
413
414When you create a local copy of a Git repository, the copy has the same
415set of branches as the original. This means you can use Git to create a
416local working area (also called a branch) that tracks a specific
Patrick Williams45852732022-04-02 08:58:32 -0500417development branch from the upstream source Git repository. In other
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500418words, you can define your local Git environment to work on any
419development branch in the repository. To help illustrate, consider the
Andrew Geisslerc926e172021-05-07 16:11:35 -0500420following example Git commands::
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500421
422 $ cd ~
Andrew Geissler595f6302022-01-24 19:11:47 +0000423 $ git clone git://git.yoctoproject.org/poky -b &DISTRO_NAME_NO_CAP;
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500424
425In the previous example
426after moving to the home directory, the ``git clone`` command creates a
Andrew Geissler595f6302022-01-24 19:11:47 +0000427local copy of the upstream ``poky`` Git repository and checks out a
428local branch named "&DISTRO_NAME_NO_CAP;", which tracks the upstream
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500429"origin/&DISTRO_NAME_NO_CAP;" branch. Changes you make while in this
430branch would ultimately affect the upstream "&DISTRO_NAME_NO_CAP;" branch
431of the ``poky`` repository.
432
433It is important to understand that when you create and checkout a local
434working branch based on a branch name, your local environment matches
435the "tip" of that particular development branch at the time you created
436your local branch, which could be different from the files in the
437"master" branch of the upstream repository. In other words, creating and
438checking out a local branch based on the "&DISTRO_NAME_NO_CAP;" branch
439name is not the same as checking out the "master" branch in the
440repository. Keep reading to see how you create a local snapshot of a
441Yocto Project Release.
442
443Git uses "tags" to mark specific changes in a repository branch
444structure. Typically, a tag is used to mark a special point such as the
445final change (or commit) before a project is released. You can see the
Andrew Geissler09209ee2020-12-13 08:44:15 -0600446tags used with the ``poky`` Git repository by going to :yocto_git:`/poky/`
447and clicking on the ``[...]`` link beneath the "Tag" heading.
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500448
449Some key tags for the ``poky`` repository are ``jethro-14.0.3``,
450``morty-16.0.1``, ``pyro-17.0.0``, and
Andrew Geissler9aee5002022-03-30 16:27:02 +0000451``&DISTRO_NAME_NO_CAP;-&DISTRO;``. These tags represent Yocto Project
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500452releases.
453
454When you create a local copy of the Git repository, you also have access
455to all the tags in the upstream repository. Similar to branches, you can
456create and checkout a local working Git branch based on a tag name. When
457you do this, you get a snapshot of the Git repository that reflects the
458state of the files when the change was made associated with that tag.
459The most common use is to checkout a working branch that matches a
Andrew Geisslerc926e172021-05-07 16:11:35 -0500460specific Yocto Project release. Here is an example::
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500461
462 $ cd ~
463 $ git clone git://git.yoctoproject.org/poky
464 $ cd poky
465 $ git fetch --tags
466 $ git checkout tags/rocko-18.0.0 -b my_rocko-18.0.0
467
468In this example, the name
469of the top-level directory of your local Yocto Project repository is
470``poky``. After moving to the ``poky`` directory, the ``git fetch``
471command makes all the upstream tags available locally in your
472repository. Finally, the ``git checkout`` command creates and checks out
473a branch named "my-rocko-18.0.0" that is based on the upstream branch
474whose "HEAD" matches the commit in the repository associated with the
475"rocko-18.0.0" tag. The files in your repository now exactly match that
476particular Yocto Project release as it is tagged in the upstream Git
477repository. It is important to understand that when you create and
478checkout a local working branch based on a tag, your environment matches
479a specific point in time and not the entire development branch (i.e.
480from the "tip" of the branch backwards).
481
482Basic Commands
483--------------
484
485Git has an extensive set of commands that lets you manage changes and
486perform collaboration over the life of a project. Conveniently though,
487you can manage with a small set of basic operations and workflows once
488you understand the basic philosophy behind Git. You do not have to be an
489expert in Git to be functional. A good place to look for instruction on
490a minimal set of Git commands is
Andrew Geisslerd1e89492021-02-12 15:35:20 -0600491`here <https://git-scm.com/documentation>`__.
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500492
493The following list of Git commands briefly describes some basic Git
494operations as a way to get started. As with any set of commands, this
495list (in most cases) simply shows the base command and omits the many
496arguments it supports. See the Git documentation for complete
497descriptions and strategies on how to use these commands:
498
499- *git init:* Initializes an empty Git repository. You cannot use
500 Git commands unless you have a ``.git`` repository.
501
502- *git clone:* Creates a local clone of a Git repository that is on
503 equal footing with a fellow developer's Git repository or an upstream
504 repository.
505
506- *git add:* Locally stages updated file contents to the index that
507 Git uses to track changes. You must stage all files that have changed
508 before you can commit them.
509
510- *git commit:* Creates a local "commit" that documents the changes
511 you made. Only changes that have been staged can be committed.
512 Commits are used for historical purposes, for determining if a
513 maintainer of a project will allow the change, and for ultimately
514 pushing the change from your local Git repository into the project's
515 upstream repository.
516
517- *git status:* Reports any modified files that possibly need to be
518 staged and gives you a status of where you stand regarding local
519 commits as compared to the upstream repository.
520
521- *git checkout branch-name:* Changes your local working branch and
522 in this form assumes the local branch already exists. This command is
523 analogous to "cd".
524
Andrew Geissler3b8a17c2021-04-15 15:55:55 -0500525- *git checkout -b working-branch upstream-branch:* Creates and
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500526 checks out a working branch on your local machine. The local branch
527 tracks the upstream branch. You can use your local branch to isolate
528 your work. It is a good idea to use local branches when adding
529 specific features or changes. Using isolated branches facilitates
530 easy removal of changes if they do not work out.
531
532- *git branch:* Displays the existing local branches associated
533 with your local repository. The branch that you have currently
534 checked out is noted with an asterisk character.
535
536- *git branch -D branch-name:* Deletes an existing local branch.
537 You need to be in a local branch other than the one you are deleting
538 in order to delete branch-name.
539
Patrick Williams45852732022-04-02 08:58:32 -0500540- *git pull \-\-rebase*: Retrieves information from an upstream Git
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500541 repository and places it in your local Git repository. You use this
542 command to make sure you are synchronized with the repository from
Andrew Geissler595f6302022-01-24 19:11:47 +0000543 which you are basing changes (e.g. the "&DISTRO_NAME_NO_CAP;"
Patrick Williams45852732022-04-02 08:58:32 -0500544 branch). The ``--rebase`` option ensures that any local commits you
Andrew Geissler595f6302022-01-24 19:11:47 +0000545 have in your branch are preserved at the top of your local branch.
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500546
547- *git push repo-name local-branch:upstream-branch:* Sends
548 all your committed local changes to the upstream Git repository that
549 your local repository is tracking (e.g. a contribution repository).
550 The maintainer of the project draws from these repositories to merge
551 changes (commits) into the appropriate branch of project's upstream
552 repository.
553
554- *git merge:* Combines or adds changes from one local branch of
555 your repository with another branch. When you create a local Git
Andrew Geissler595f6302022-01-24 19:11:47 +0000556 repository, the default branch may be named "main". A typical
557 workflow is to create a temporary branch that is based off "main"
558 that you would use for isolated work. You would make your changes in
559 that isolated branch, stage and commit them locally, switch to the
560 "main" branch, and then use the ``git merge`` command to apply the
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500561 changes from your isolated branch into the currently checked out
Andrew Geissler595f6302022-01-24 19:11:47 +0000562 branch (e.g. "main"). After the merge is complete and if you are
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500563 done with working in that isolated branch, you can safely delete the
564 isolated branch.
565
566- *git cherry-pick commits:* Choose and apply specific commits from
567 one branch into another branch. There are times when you might not be
568 able to merge all the changes in one branch with another but need to
569 pick out certain ones.
570
571- *gitk:* Provides a GUI view of the branches and changes in your
572 local Git repository. This command is a good way to graphically see
573 where things have diverged in your local repository.
574
575 .. note::
576
577 You need to install the
578 gitk
579 package on your development system to use this command.
580
581- *git log:* Reports a history of your commits to the repository.
582 This report lists all commits regardless of whether you have pushed
583 them upstream or not.
584
585- *git diff:* Displays line-by-line differences between a local
586 working file and the same file as understood by Git. This command is
587 useful to see what you have changed in any given file.
588
589Licensing
590=========
591
592Because open source projects are open to the public, they have different
593licensing structures in place. License evolution for both Open Source
594and Free Software has an interesting history. If you are interested in
595this history, you can find basic information here:
596
Patrick Williams7784c422022-11-17 07:29:11 -0600597- :wikipedia:`Open source license history <Open-source_license>`
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500598
Patrick Williams7784c422022-11-17 07:29:11 -0600599- :wikipedia:`Free software license history <Free_software_license>`
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500600
601In general, the Yocto Project is broadly licensed under the
602Massachusetts Institute of Technology (MIT) License. MIT licensing
603permits the reuse of software within proprietary software as long as the
Patrick Williams03907ee2022-05-01 06:28:52 -0500604license is distributed with that software. Patches to the Yocto Project
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500605follow the upstream licensing scheme. You can find information on the
Patrick Williams7784c422022-11-17 07:29:11 -0600606MIT license :wikipedia:`here <MIT_License>`.
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500607
608When you build an image using the Yocto Project, the build process uses
609a known list of licenses to ensure compliance. You can find this list in
Patrick Williams2390b1b2022-11-03 13:47:49 -0500610the :term:`Source Directory` at ``meta/files/common-licenses``. Once the
611build completes, the list of all licenses found and used during that build
612are kept in the :term:`Build Directory` at ``tmp/deploy/licenses``.
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500613
614If a module requires a license that is not in the base list, the build
615process generates a warning during the build. These tools make it easier
616for a developer to be certain of the licenses with which their shipped
617products must comply. However, even with these tools it is still up to
618the developer to resolve potential licensing issues.
619
620The base list of licenses used by the build process is a combination of
621the Software Package Data Exchange (SPDX) list and the Open Source
Andrew Geisslerd1e89492021-02-12 15:35:20 -0600622Initiative (OSI) projects. `SPDX Group <https://spdx.org>`__ is a working
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500623group of the Linux Foundation that maintains a specification for a
624standard format for communicating the components, licenses, and
625copyrights associated with a software package.
Andrew Geisslerd1e89492021-02-12 15:35:20 -0600626`OSI <https://opensource.org>`__ is a corporation dedicated to the Open
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500627Source Definition and the effort for reviewing and approving licenses
628that conform to the Open Source Definition (OSD).
629
630You can find a list of the combined SPDX and OSI licenses that the Yocto
631Project uses in the ``meta/files/common-licenses`` directory in your
632:term:`Source Directory`.
633
634For information that can help you maintain compliance with various open
635source licensing during the lifecycle of a product created using the
636Yocto Project, see the
Andrew Geissler517393d2023-01-13 08:55:19 -0600637":ref:`dev-manual/licenses:maintaining open source license compliance during your product's lifecycle`"
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500638section in the Yocto Project Development Tasks Manual.