diff options
| author | Scott Rifenbark <scott.m.rifenbark@intel.com> | 2011-03-16 17:00:19 -0600 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-03-18 23:20:41 +0000 |
| commit | d7635a9972ae94ccd9f53a57c2609c3436d57836 (patch) | |
| tree | f2a53da8e042aea124c85abdd42c3923fd2deda9 /documentation | |
| parent | 4a8dd99a9fad88b24cf14121bdc9be94487b8e10 (diff) | |
| download | poky-d7635a9972ae94ccd9f53a57c2609c3436d57836.tar.gz | |
documentation/yocto-project-qs/yocto-project-qs.xml: 1.0 edits applied to examples
This is first guess at the correct example commands and directory
names for the Bernard 5.0 release. I don't have any real directories
available to look at and doc changes are supposed to be frozen before the
actual build. So these are guesses and will need reviewed.
(From OE-Core rev: c052537216395019bc436291e1c2ec43c3abc3ae)
Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'documentation')
| -rw-r--r-- | documentation/yocto-project-qs/yocto-project-qs.xml | 42 |
1 files changed, 21 insertions, 21 deletions
diff --git a/documentation/yocto-project-qs/yocto-project-qs.xml b/documentation/yocto-project-qs/yocto-project-qs.xml index c2e019a1aa..c481d5f54f 100644 --- a/documentation/yocto-project-qs/yocto-project-qs.xml +++ b/documentation/yocto-project-qs/yocto-project-qs.xml | |||
| @@ -176,7 +176,7 @@ | |||
| 176 | 176 | ||
| 177 | <para> | 177 | <para> |
| 178 | The latest release images for the Yocto Project are kept at | 178 | The latest release images for the Yocto Project are kept at |
| 179 | <ulink url="http://yoctoproject.org/downloads/yocto-0.9/"></ulink>. | 179 | <ulink url="http://yoctoproject.org/downloads/yocto-1.0/"></ulink>. |
| 180 | Nightly and developmental builds are also maintained. However, for this | 180 | Nightly and developmental builds are also maintained. However, for this |
| 181 | document a released version of Yocto Project is used. | 181 | document a released version of Yocto Project is used. |
| 182 | </para> | 182 | </para> |
| @@ -230,9 +230,9 @@ | |||
| 230 | 230 | ||
| 231 | <para> | 231 | <para> |
| 232 | <literallayout class='monospaced'> | 232 | <literallayout class='monospaced'> |
| 233 | $ wget http://www.yoctoproject.org/downloads/poky/poky-laverne-4.0.tar.bz2 | 233 | $ wget http://www.yoctoproject.org/downloads/poky/poky-bernard-5.0.tar.bz2 |
| 234 | $ tar xjf poky-laverne-4.0.tar.bz2 | 234 | $ tar xjf poky-bernard-5.0.tar.bz2 |
| 235 | $ source poky-laverne-4.0/poky-init-build-env poky-4.0-build | 235 | $ source poky-bernard-5.0/poky-init-build-env poky-5.0-build |
| 236 | </literallayout> | 236 | </literallayout> |
| 237 | </para> | 237 | </para> |
| 238 | 238 | ||
| @@ -250,8 +250,8 @@ | |||
| 250 | <listitem><para>The first two commands extract the Yocto Project files from the | 250 | <listitem><para>The first two commands extract the Yocto Project files from the |
| 251 | release tarball and place them into a subdirectory of your current directory.</para></listitem> | 251 | release tarball and place them into a subdirectory of your current directory.</para></listitem> |
| 252 | <listitem><para>The <command>source</command> command creates the | 252 | <listitem><para>The <command>source</command> command creates the |
| 253 | <filename>poky-4.0-build</filename> directory and executes the <command>cd</command> | 253 | <filename>poky-5.0-build</filename> directory and executes the <command>cd</command> |
| 254 | command to make <filename>poky-4.0-build</filename> the working directory. | 254 | command to make <filename>poky-5.0-build</filename> the working directory. |
| 255 | The resulting build directory contains all the files created during the build. | 255 | The resulting build directory contains all the files created during the build. |
| 256 | By default the target architecture is qemux86. | 256 | By default the target architecture is qemux86. |
| 257 | To change this default, edit the value of the MACHINE variable in the | 257 | To change this default, edit the value of the MACHINE variable in the |
| @@ -353,9 +353,10 @@ | |||
| 353 | <title>Installing the Toolchain</title> | 353 | <title>Installing the Toolchain</title> |
| 354 | <para> | 354 | <para> |
| 355 | You can download the pre-built toolchain, which includes the poky-qemu script and | 355 | You can download the pre-built toolchain, which includes the poky-qemu script and |
| 356 | support files, from <ulink url='http://yoctoproject.org/downloads/yocto-0.9/toolchain/'></ulink>. | 356 | support files, from |
| 357 | <ulink url='http://yoctoproject.org/downloads/yocto-1.0/toolchain/'></ulink>. | ||
| 357 | Toolchains are available for 32-bit and 64-bit development systems from the | 358 | Toolchains are available for 32-bit and 64-bit development systems from the |
| 358 | <filename>i586</filename> and <filename>x86_64</filename> folders, respectively. | 359 | <filename>i686</filename> and <filename>x86_64</filename> folders, respectively. |
| 359 | Each type of development system supports five target architectures. | 360 | Each type of development system supports five target architectures. |
| 360 | The tarball files are named such that a string representing the host system appears | 361 | The tarball files are named such that a string representing the host system appears |
| 361 | first in the filename and then is immediately followed by a string representing | 362 | first in the filename and then is immediately followed by a string representing |
| @@ -367,10 +368,10 @@ | |||
| 367 | 368 | ||
| 368 | Where: | 369 | Where: |
| 369 | <<emphasis>host_system</emphasis>> is a string representing your development system: | 370 | <<emphasis>host_system</emphasis>> is a string representing your development system: |
| 370 | i586 or x86_64. | 371 | i686 or x86_64. |
| 371 | 372 | ||
| 372 | <<emphasis>arch</emphasis>> is a string representing the target architecture: | 373 | <<emphasis>arch</emphasis>> is a string representing the target architecture: |
| 373 | i585, x86_64, powerpc, mips, or arm. | 374 | i686, x86_64, powerpc, mips, or arm. |
| 374 | 375 | ||
| 375 | <<emphasis>release</emphasis>> is the version of Yocto Project. | 376 | <<emphasis>release</emphasis>> is the version of Yocto Project. |
| 376 | </literallayout> | 377 | </literallayout> |
| @@ -381,7 +382,7 @@ | |||
| 381 | </para> | 382 | </para> |
| 382 | 383 | ||
| 383 | <literallayout class='monospaced'> | 384 | <literallayout class='monospaced'> |
| 384 | yocto-eglibc-x86_64-i586-toolchain-sdk-0.9.tar.bz2 | 385 | yocto-eglibc-x86_64-i686-toolchain-sdk-1.0.tar.bz2 |
| 385 | </literallayout> | 386 | </literallayout> |
| 386 | 387 | ||
| 387 | <para> | 388 | <para> |
| @@ -393,7 +394,7 @@ | |||
| 393 | <para> | 394 | <para> |
| 394 | <literallayout class='monospaced'> | 395 | <literallayout class='monospaced'> |
| 395 | $ cd / | 396 | $ cd / |
| 396 | $ sudo tar -xvjf yocto-eglibc-x86_64-i586-toolchain-sdk-0.9.tar.bz2 | 397 | $ sudo tar -xvjf yocto-eglibc-x86_64-i686-toolchain-sdk-1.0.tar.bz2 |
| 397 | </literallayout> | 398 | </literallayout> |
| 398 | </para> | 399 | </para> |
| 399 | </section> | 400 | </section> |
| @@ -403,7 +404,7 @@ | |||
| 403 | <para> | 404 | <para> |
| 404 | You can download the pre-built Linux kernel and the filesystem image suitable for | 405 | You can download the pre-built Linux kernel and the filesystem image suitable for |
| 405 | running in the emulator QEMU from | 406 | running in the emulator QEMU from |
| 406 | <ulink url='http://yoctoproject.org/downloads/yocto-0.9/qemu'></ulink>. | 407 | <ulink url='http://yoctoproject.org/downloads/yocto-1.0/machines/qemu'></ulink>. |
| 407 | Be sure to use the kernel and filesystem image that matches the architecture you want | 408 | Be sure to use the kernel and filesystem image that matches the architecture you want |
| 408 | to simulate. | 409 | to simulate. |
| 409 | </para> | 410 | </para> |
| @@ -455,10 +456,10 @@ | |||
| 455 | 456 | ||
| 456 | Where: | 457 | Where: |
| 457 | <<emphasis>arch</emphasis>> is a string representing the target architecture: | 458 | <<emphasis>arch</emphasis>> is a string representing the target architecture: |
| 458 | i586, x86_64, ppc603e, mips, or armv5te. | 459 | i686, x86_64, ppc603e, mips, or armv5te. |
| 459 | 460 | ||
| 460 | <<emphasis>if</emphasis>> is a string representing an embedded application binary interface. | 461 | <<emphasis>if</emphasis>> is a string representing an embedded application binary interface. |
| 461 | Not all setup scripts include this string. | 462 | Not all setup scripts include this string. |
| 462 | </literallayout> | 463 | </literallayout> |
| 463 | 464 | ||
| 464 | <para> | 465 | <para> |
| @@ -466,17 +467,16 @@ | |||
| 466 | </para> | 467 | </para> |
| 467 | 468 | ||
| 468 | <literallayout class='monospaced'> | 469 | <literallayout class='monospaced'> |
| 469 | $ poky-qemu <<emphasis>qemuarch</emphasis>> <<emphasis>kernel</emphasis>> <<emphasis>image</emphasis>> <<emphasis>fstype</emphasis>> | 470 | $ poky-qemu <<emphasis>qemuarch</emphasis>> <<emphasis>kernel</emphasis>> <<emphasis>filesystem_image</emphasis>> |
| 470 | 471 | ||
| 471 | Where: | 472 | Where: |
| 472 | <<emphasis>qemuarch</emphasis>> is a string representing the target architecture: qemux86, qemux86-64, | 473 | <<emphasis>qemuarch</emphasis>> is a string representing the target architecture: qemux86, qemux86-64, |
| 473 | qemuppc, qemumips, or qemuarm. | 474 | qemuppc, qemumips, or qemuarm. |
| 474 | 475 | ||
| 475 | <<emphasis>kernel</emphasis>> is the architecture-specific kernel. | 476 | <<emphasis>kernel</emphasis>> is the architecture-specific kernel. |
| 476 | 477 | ||
| 477 | <<emphasis>image</emphasis>> is the .ext3 filesystem image. | 478 | <<emphasis>filesystem_image</emphasis>> is the .ext3 filesystem image. |
| 478 | 479 | ||
| 479 | <<emphasis>fstype</emphasis>> is the filesystem type. | ||
| 480 | </literallayout> | 480 | </literallayout> |
| 481 | 481 | ||
| 482 | <para> | 482 | <para> |
| @@ -486,8 +486,8 @@ | |||
| 486 | </para> | 486 | </para> |
| 487 | 487 | ||
| 488 | <literallayout class='monospaced'> | 488 | <literallayout class='monospaced'> |
| 489 | $ source /opt/poky/environment-setup-i586-poky-linux | 489 | $ source /opt/poky/environment-setup-i686-poky-linux |
| 490 | $ poky-qemu qemui586 zImage-2.6.34-qemux86-0.9 yocto-image-sdk-qemux86-0.9.rootfs.ext3 ext3 | 490 | $ poky-qemu qemux86 zImage-2.6.34-qemux86-1.0.bin yocto-image-sdk-qemux86-1.0.rootfs.ext3 |
| 491 | </literallayout> | 491 | </literallayout> |
| 492 | 492 | ||
| 493 | <para> | 493 | <para> |
