diff options
| -rw-r--r-- | documentation/dev-manual/dev-manual-model.xml | 21 |
1 files changed, 11 insertions, 10 deletions
diff --git a/documentation/dev-manual/dev-manual-model.xml b/documentation/dev-manual/dev-manual-model.xml index 761ac982a5..a3e61cb6c2 100644 --- a/documentation/dev-manual/dev-manual-model.xml +++ b/documentation/dev-manual/dev-manual-model.xml | |||
| @@ -808,19 +808,19 @@ | |||
| 808 | by doing the following: | 808 | by doing the following: |
| 809 | <orderedlist> | 809 | <orderedlist> |
| 810 | <listitem><para>Use the Oracle JDK. | 810 | <listitem><para>Use the Oracle JDK. |
| 811 | If you don't have that, go to | 811 | If you don't have that, go to |
| 812 | <ulink url='http://www.oracle.com/technetwork/java/javase/downloads/jdk7-downloads-1880260.html'></ulink> | 812 | <ulink url='http://www.oracle.com/technetwork/java/javase/downloads/jdk7-downloads-1880260.html'></ulink> |
| 813 | and download the appropriate tarball | 813 | and download the appropriate tarball |
| 814 | for your development system and | 814 | for your development system and |
| 815 | extract it into your home directory. | 815 | extract it into your home directory. |
| 816 | </para></listitem> | 816 | </para></listitem> |
| 817 | <listitem><para>In the shell you are going | 817 | <listitem><para>In the shell you are going |
| 818 | to do your work, export the location of | 818 | to do your work, export the location of |
| 819 | the Oracle Java as follows: | 819 | the Oracle Java as follows: |
| 820 | <literallayout class='monospaced'> | 820 | <literallayout class='monospaced'> |
| 821 | export PATH=~/jdk1.7.0_40/bin:$PATH | 821 | export PATH=~/jdk1.7.0_40/bin:$PATH |
| 822 | </literallayout></para></listitem> | 822 | </literallayout></para></listitem> |
| 823 | </orderedlist></para></listitem> | 823 | </orderedlist></para></listitem> |
| 824 | <listitem><para>In the same shell, create a Git | 824 | <listitem><para>In the same shell, create a Git |
| 825 | repository with: | 825 | repository with: |
| 826 | <literallayout class='monospaced'> | 826 | <literallayout class='monospaced'> |
| @@ -894,7 +894,7 @@ | |||
| 894 | </para></listitem> | 894 | </para></listitem> |
| 895 | <listitem><para>Click through the "Okay" buttons. | 895 | <listitem><para>Click through the "Okay" buttons. |
| 896 | </para></listitem> | 896 | </para></listitem> |
| 897 | <listitem><para>Check the boxes | 897 | <listitem><para>Check the boxes |
| 898 | in the installation window and complete | 898 | in the installation window and complete |
| 899 | the installation.</para></listitem> | 899 | the installation.</para></listitem> |
| 900 | <listitem><para>Restart the Eclipse IDE if | 900 | <listitem><para>Restart the Eclipse IDE if |
| @@ -1661,7 +1661,7 @@ | |||
| 1661 | For example, here is the work directory for recipes and resulting packages that are | 1661 | For example, here is the work directory for recipes and resulting packages that are |
| 1662 | not device-dependent: | 1662 | not device-dependent: |
| 1663 | <literallayout class='monospaced'> | 1663 | <literallayout class='monospaced'> |
| 1664 | ${TMPDIR}/work/${PACKAGE_ARCH}-poky-${TARGET_OS}/${PN}-${PV}-${PR} | 1664 | ${TMPDIR}/work/${PACKAGE_ARCH}-poky-${TARGET_OS}/${PN}/${EXTENDPE}${PV}-${PR} |
| 1665 | </literallayout> | 1665 | </literallayout> |
| 1666 | Let's look at an example without variables. | 1666 | Let's look at an example without variables. |
| 1667 | Assuming a top-level <link linkend='source-directory'>Source Directory</link> | 1667 | Assuming a top-level <link linkend='source-directory'>Source Directory</link> |
| @@ -1670,7 +1670,7 @@ | |||
| 1670 | the following is the work directory for the <filename>acl</filename> recipe that | 1670 | the following is the work directory for the <filename>acl</filename> recipe that |
| 1671 | creates the <filename>acl</filename> package: | 1671 | creates the <filename>acl</filename> package: |
| 1672 | <literallayout class='monospaced'> | 1672 | <literallayout class='monospaced'> |
| 1673 | ~/poky/build/tmp/work/i586-poky-linux/acl-2.2.51-r3 | 1673 | ~/poky/build/tmp/work/i586-poky-linux/acl/2.2.51-r3/ |
| 1674 | </literallayout> | 1674 | </literallayout> |
| 1675 | </para> | 1675 | </para> |
| 1676 | 1676 | ||
| @@ -1678,7 +1678,7 @@ | |||
| 1678 | If your resulting package is dependent on the target device, | 1678 | If your resulting package is dependent on the target device, |
| 1679 | the work directory varies slightly: | 1679 | the work directory varies slightly: |
| 1680 | <literallayout class='monospaced'> | 1680 | <literallayout class='monospaced'> |
| 1681 | ${TMPDIR}/work/${MACHINE}-poky-${TARGET_OS}/${PN}-${PV}-${PR} | 1681 | ${TMPDIR}/work/${MACHINE}-poky-${TARGET_OS}/${PN}/${EXTENDPE}${PV}-${PR} |
| 1682 | </literallayout> | 1682 | </literallayout> |
| 1683 | Again, assuming top-level Source Directory named <filename>poky</filename> | 1683 | Again, assuming top-level Source Directory named <filename>poky</filename> |
| 1684 | and a default Build Directory of <filename>poky/build</filename>, the | 1684 | and a default Build Directory of <filename>poky/build</filename>, the |
| @@ -1686,8 +1686,8 @@ | |||
| 1686 | for the <filename>acl</filename> package that is being | 1686 | for the <filename>acl</filename> package that is being |
| 1687 | built for a MIPS-based device: | 1687 | built for a MIPS-based device: |
| 1688 | <literallayout class='monospaced'> | 1688 | <literallayout class='monospaced'> |
| 1689 | ~/poky/build/tmp/work/mips-poky-linux/acl-2.2.51-r2 | 1689 | ~/poky/build/tmp/work/mips-poky-linux/acl/2.2.51-r2 |
| 1690 | ~/poky/build/tmp/work/mips-poky-linux/acl-2.2.51-r2/acl-2.2.51 | 1690 | ~/poky/build/tmp/work/mips-poky-linux/acl/2.2.51-r2/acl-2.2.51 |
| 1691 | </literallayout> | 1691 | </literallayout> |
| 1692 | </para> | 1692 | </para> |
| 1693 | 1693 | ||
| @@ -1701,6 +1701,7 @@ | |||
| 1701 | <ulink url='&YOCTO_DOCS_REF_URL;#var-TARGET_OS'><filename>TARGET_OS</filename></ulink>, | 1701 | <ulink url='&YOCTO_DOCS_REF_URL;#var-TARGET_OS'><filename>TARGET_OS</filename></ulink>, |
| 1702 | <ulink url='&YOCTO_DOCS_REF_URL;#var-PN'><filename>PN</filename></ulink>, | 1702 | <ulink url='&YOCTO_DOCS_REF_URL;#var-PN'><filename>PN</filename></ulink>, |
| 1703 | <ulink url='&YOCTO_DOCS_REF_URL;#var-PV'><filename>PV</filename></ulink>, | 1703 | <ulink url='&YOCTO_DOCS_REF_URL;#var-PV'><filename>PV</filename></ulink>, |
| 1704 | <ulink url='&YOCTO_DOCS_REF_URL;#var-EXTENDPE'><filename>EXTENDPE</filename></ulink>, | ||
| 1704 | and | 1705 | and |
| 1705 | <ulink url='&YOCTO_DOCS_REF_URL;#var-PR'><filename>PR</filename></ulink> | 1706 | <ulink url='&YOCTO_DOCS_REF_URL;#var-PR'><filename>PR</filename></ulink> |
| 1706 | variables in the Yocto Project Reference Manual. | 1707 | variables in the Yocto Project Reference Manual. |
