diff --git a/documentation/yocto-project-qs/yocto-project-qs.xml b/documentation/yocto-project-qs/yocto-project-qs.xml
index ce6eda85c8..0e79199a35 100644
--- a/documentation/yocto-project-qs/yocto-project-qs.xml
+++ b/documentation/yocto-project-qs/yocto-project-qs.xml
@@ -80,17 +80,33 @@
basic understanding of what the Yocto Project is and how to use
some of its core components.
You will also have worked through steps to produce two images:
- one that is suitable for emulation and one that boots on actual
- hardware.
+ one that runs on the emulator (QEMU) and one that boots on actual
+ hardware (i.e. MinnowBoard Turbot).
The examples highlight the ease with which you can use the
Yocto Project to create images for multiple types of hardware.
+
+
+
+ The following list directs you to key sections of this
+ quick start:
+
+
+ Setting Up to Use the Yocto Project
+
+
+ Building an Image for Emulation
+
+
+ Building an Image for Hardware
+
+
If you do not have a system that runs Linux and you want to give
the Yocto Project a test run, you might consider using the Yocto
Project Build Appliance.
- The Build Appliance allows you to build and boot a custom embedded
- Linux image with the Yocto Project using a non-Linux development
- system.
+ The Build Appliance allows you to build and boot a custom
+ embedded Linux image with the Yocto Project using a non-Linux
+ development system.
See the
Yocto Project Build Appliance
for more information.
@@ -473,7 +489,7 @@
create a second image that you can load onto bootable
media and actually boot target hardware.
This example uses the MinnowBoard
- MAX-compatible boards.
+ Turbot-compatible boards.
@@ -712,13 +728,13 @@
The following steps show how easy it is to set up to build an
image for a new machine.
- These steps build an image for the MinnowBoard MAX, which is
+ These steps build an image for the MinnowBoard Turbot, which is
supported by the Yocto Project and the
meta-intel intel-corei7-64
and intel-core2-32 Board Support Packages
(BSPs).
- The MinnowBoard MAX ships with 64-bit firmware.
+ The MinnowBoard Turbot ships with 64-bit firmware.
If you want to use the board in 32-bit mode, you must
download the
32-bit firmware.
@@ -729,7 +745,8 @@
Create a Local Copy of the
meta-intel Repository:
- Building an image for the MinnowBoard MAX requires the
+ Building an image for the MinnowBoard Turbot requires
+ the
meta-intel layer.
Use the git clone command to create
a local copy of the repository inside your
@@ -758,13 +775,13 @@
repository by tag, you should use a
meta-intel
tag that corresponds with the release you used for
- poky. Consequently, you need to
- checkout out the
- "&METAINTELVERSION;-tbd-&YOCTO_DOC_VERSION;"
+ poky.
+ Consequently, you need to checkout out the
+ "&METAINTELVERSION;-&DISTRO_NAME_NO_CAP;-&YOCTO_DOC_VERSION;"
branch after cloning meta-intel:
$ cd $HOME/poky/meta-intel
- $ git checkout tags/&METAINTELVERSION;-tbd-&YOCTO_DOC_VERSION; -b meta-intel-&DISTRO_NAME_NO_CAP;-&YOCTO_DOC_VERSION;
+ $ git checkout tags/&METAINTELVERSION;-&DISTRO_NAME_NO_CAP;-&YOCTO_DOC_VERSION; -b meta-intel-&DISTRO_NAME_NO_CAP;-&YOCTO_DOC_VERSION;
Switched to a new branch 'meta-intel-&DISTRO_NAME_NO_CAP;-&YOCTO_DOC_VERSION;'
The previous Git checkout command
@@ -812,13 +829,15 @@
- Build an Image for MinnowBoard MAX:
+
+ Build an Image for MinnowBoard
+ Turbot:
The type of image you build depends on your goals.
For example, the previous build created a
core-image-sato image, which is an
image with Sato support.
It is possible to build many image types for the
- MinnowBoard MAX.
+ MinnowBoard Turbot.
Some possibilities are core-image-base,
which is a console-only image.
Another choice could be a
@@ -894,7 +913,7 @@
Boot the Hardware:
With the boot device provisioned, you can insert the
- media into the MinnowBoard MAX and boot the hardware.
+ media into the MinnowBoard Turbot and boot the hardware.
The board should automatically detect the media and boot to
the bootloader and subsequently the operating system.