Wiki page yocto-start changed with summary [] by Raster

This commit is contained in:
Carsten Haitzler 2015-06-22 20:26:32 -07:00 committed by apache
parent c60d8925a1
commit 1180195f8b
1 changed files with 5 additions and 8 deletions

View File

@ -1,10 +1,9 @@
~~Title: Yocto~~
==== Yocto ====
In Yocto, a meta-efl layer is provided by the meta-openembedded layer. It
contains efl, elementary, enlightenment, terminology and other recipes.
In Yocto, a ''meta-efl'' layer is provided by the ''meta-openembedded'' layer. It contains EFL, Elementary, Enlightenment, Terminology and other recipes.
So, the first step is to add this layer in conf/bblayer.conf:
So, the first step is to add this layer in ''conf/bblayer.conf'':
<code bash>
BBLAYERS ?= \
@ -15,8 +14,7 @@ BBLAYERS ?= \
"
</code>
Next, to install Enlightenment and Terminology, add the following lines to your
recipe:
Next, to install Enlightenment and Terminology, add the following lines to your recipe:
<code bash>
#add enlightenment window manager
@ -24,9 +22,8 @@ IMAGE_INSTALL += "e-wm"
IMAGE_INSTALL += "terminology"
</code>
If you just want Elementary and EFL, just add the lines below or something
that depends on EFL or Elementary:
If you just want Elementary and EFL, just add the lines below or something that depends on EFL or Elementary:
<code bash>
IMAGE_INSTALL += "elementary-tests"
</code>
</code>