Difference between revisions of "Yocto Project"

From eLinux.org
Jump to: navigation, search
(FAQs)
(Overview)
Line 1: Line 1:
 
== Overview ==
 
== Overview ==
The Yocto Project is an project that intends to provide an OpenSource build system, based on top of Poky and [[Open Embedded]], that enables developers to create their own linux distribution specific to their environment.  
+
The Yocto Project is a project attempting to improve the lives of developers of customised Linux systems by focusing on having one set of great tools rather than the several sets of mediocre ones that existed when the project was founded. A key part of this is an OpenSource build system based around the [[Open Embedded]] architecture that enables developers to create their own linux distribution specific to their environment. This reference implementation of [[Open Embedded]] is called [[Poky]]
  
To ease this even further, the Yocto Project offers some templates of different sizes (tiny to fullblown), which the developer can adapt (extend or shrink) by the simple means of editing some configuration files. Internally Yocto uses a tool called "bitbake" to perform builds.  The instructions for the build are called "recipes". This is similar to Gentoo's ebuild system, so adding new packages or modifying packages is quite easy. When bitbake is then run, it takes care of fetching the sources, compiling, packaging and creating the image, but also provides the developer with a toolchain for cross compilation and a Software Developer Kit (SDK) tailored to his own distribution. Depending on the configuration, the created image can then be deployed directly onto the target hardware or emulated via [[qemu]].
+
There are several other subprojects under the project umbrella which include Eglibc, pseudo, cross-prelink, eclipse integration ADT/SDK, the matchbox suite of applications and many others.
  
Unfortunately Yocto currently leaves out the [[bootloader]] part of the system, "as this should be provided by the board vendor".
+
Through OpenEmbedded-Core included as part of Poky, the Yocto Project offers some templates of different sizes (tiny to fullblown), which the developer can adapt (extend or shrink) by the simple means of editing some configuration files. A tool called "bitbake" is used to perform builds and the instructions for the build are called "recipes". This is similar to Gentoo's ebuild system, so adding new packages or modifying packages is quite easy. When bitbake is then run, it takes care of fetching the sources, compiling, packaging and creating the image, but also provides the developer with a toolchain for cross compilation and a Software Developer Kit (SDK) tailored to his own distribution (also referred to as the Application Developer Toolkit (ADT). Depending on the configuration, the created image can then be deployed directly onto the target hardware or emulated via [[qemu]]. Other code such as bootloaders and firmware can optionally be compiled.
  
 
A quick overview of Yocto's internal flow can be found here: [http://www.yoctoproject.org/docs/current/yocto-project-qs/figures/yocto-environment.png Yocto Flow (Getting Started Guide) ]
 
A quick overview of Yocto's internal flow can be found here: [http://www.yoctoproject.org/docs/current/yocto-project-qs/figures/yocto-environment.png Yocto Flow (Getting Started Guide) ]
Line 10: Line 10:
 
The Yocto Project supports x86, x86_64, [[ARM]], [[PowerPC]] and MIPS targets.
 
The Yocto Project supports x86, x86_64, [[ARM]], [[PowerPC]] and MIPS targets.
  
Yocto intends to work closely with the upstream projects - e.g. updating the kernel at least once every 6 months for regular releases, but also providing the possibility to run the latest git version of the kernel - and tries to be software and vendor agnostic - thus you can e.g. choose which package manager format you intend to use in your embedded linux distribution (deb, rpm, ipkg).  
+
The project works closely with the upstream projects, both in keeping up with the latest software releases but also ensuring patches such as those for cross compiling are contributed back. The kernel is updated at least once every 6 months for regular releases, but also providing the possibility to run the latest git version of the kernel - and tries to be software and vendor agnostic - thus you can e.g. choose which package manager format you intend to use in your embedded linux distribution (deb, rpm, ipk).  
  
 
Yocto has also an excellent integration into the Eclipse IDE, and allows you to do most of the necessary steps from within Eclipse.
 
Yocto has also an excellent integration into the Eclipse IDE, and allows you to do most of the necessary steps from within Eclipse.

Revision as of 15:15, 4 October 2012

Overview

The Yocto Project is a project attempting to improve the lives of developers of customised Linux systems by focusing on having one set of great tools rather than the several sets of mediocre ones that existed when the project was founded. A key part of this is an OpenSource build system based around the Open Embedded architecture that enables developers to create their own linux distribution specific to their environment. This reference implementation of Open Embedded is called Poky

There are several other subprojects under the project umbrella which include Eglibc, pseudo, cross-prelink, eclipse integration ADT/SDK, the matchbox suite of applications and many others.

Through OpenEmbedded-Core included as part of Poky, the Yocto Project offers some templates of different sizes (tiny to fullblown), which the developer can adapt (extend or shrink) by the simple means of editing some configuration files. A tool called "bitbake" is used to perform builds and the instructions for the build are called "recipes". This is similar to Gentoo's ebuild system, so adding new packages or modifying packages is quite easy. When bitbake is then run, it takes care of fetching the sources, compiling, packaging and creating the image, but also provides the developer with a toolchain for cross compilation and a Software Developer Kit (SDK) tailored to his own distribution (also referred to as the Application Developer Toolkit (ADT). Depending on the configuration, the created image can then be deployed directly onto the target hardware or emulated via qemu. Other code such as bootloaders and firmware can optionally be compiled.

A quick overview of Yocto's internal flow can be found here: Yocto Flow (Getting Started Guide)

The Yocto Project supports x86, x86_64, ARM, PowerPC and MIPS targets.

The project works closely with the upstream projects, both in keeping up with the latest software releases but also ensuring patches such as those for cross compiling are contributed back. The kernel is updated at least once every 6 months for regular releases, but also providing the possibility to run the latest git version of the kernel - and tries to be software and vendor agnostic - thus you can e.g. choose which package manager format you intend to use in your embedded linux distribution (deb, rpm, ipk).

Yocto has also an excellent integration into the Eclipse IDE, and allows you to do most of the necessary steps from within Eclipse.

Getting Started

Getting Started (from the project website)

FAQs

Here are various FAQs about the Yocto project:

Finally, here is my own (Tim Bird's) introduction and overview:

History

  • The Linux Foundation announced the Yocto Project in October, 2010 at

Embedded Linux Conference Europe 2010

  • Version 1.0 was released on April 6, 2011.
  • Version 1.1 was released on 21 Oct 2011 and was presented during the ELCE 2011
  • Yocto is sponsored by the Linux Foundation.
  • Yocto technology derives from Poky Linux, which was a branch of Open Embedded


Talks