diff options
Diffstat (limited to 'docs')
-rw-r--r-- | docs/usermanual/.gitignore | 2 | ||||
-rw-r--r-- | docs/usermanual/Makefile | 2 | ||||
-rw-r--r-- | docs/usermanual/chapters/getting_oe.xml | 8 | ||||
-rw-r--r-- | docs/usermanual/chapters/recipes.xml | 4 | ||||
-rw-r--r-- | docs/usermanual/chapters/usage.xml | 2 |
5 files changed, 10 insertions, 8 deletions
diff --git a/docs/usermanual/.gitignore b/docs/usermanual/.gitignore index 6532057c27..67201710ad 100644 --- a/docs/usermanual/.gitignore +++ b/docs/usermanual/.gitignore @@ -2,3 +2,5 @@ html/ xhtml/ *.sw? +html-nochunks/ +*.ps diff --git a/docs/usermanual/Makefile b/docs/usermanual/Makefile index 75fdd9ebc7..36ea5e20a7 100644 --- a/docs/usermanual/Makefile +++ b/docs/usermanual/Makefile @@ -1,4 +1,4 @@ -# XSL sytlesheets downloaded from http://docbook.sourceforge.net/release/xsl/current/html/ +# XSL stylesheets downloaded from http://docbook.sourceforge.net/release/xsl/current/html/ topdir = . manual = $(topdir)/usermanual.xml diff --git a/docs/usermanual/chapters/getting_oe.xml b/docs/usermanual/chapters/getting_oe.xml index c71f32d5ae..d18c9557e3 100644 --- a/docs/usermanual/chapters/getting_oe.xml +++ b/docs/usermanual/chapters/getting_oe.xml @@ -53,13 +53,13 @@ $ <command>cd</command> $OEBASE</screen> <section><title>Downloading a <application>BitBake</application> release</title> <para>Releases are available from the berlios project website. The current release series is <application>BitBake</application> <emphasis>1.8</emphasis> - and the current release is <emphasis>1.8.16</emphasis>. To download execute + and the current release is <emphasis>1.8.18</emphasis>. To download execute the following commands: <screen> $ <command>cd</command> $OEBASE -$ <command>wget</command> http://download.berlios.de/bitbake/bitbake-1.8.16.tar.gz -$ <command>tar</command> -xvzf bitbake-1.8.16.tar.gz -$ <command>mv</command> bitbake-1.8.16 bitbake +$ <command>wget</command> http://download.berlios.de/bitbake/bitbake-1.8.18.tar.gz +$ <command>tar</command> -xvzf bitbake-1.8.18.tar.gz +$ <command>mv</command> bitbake-1.8.18 bitbake </screen> </para> diff --git a/docs/usermanual/chapters/recipes.xml b/docs/usermanual/chapters/recipes.xml index 74e8e16366..cad1d80a68 100644 --- a/docs/usermanual/chapters/recipes.xml +++ b/docs/usermanual/chapters/recipes.xml @@ -201,7 +201,7 @@ VAR1 ?= "New value"</screen></para> which results in the actions only being performed for the specified target or machine: [TODO: Link to section on overrides]<screen>SRC_URI_append_sh4 = " file://fix-makefile.patch;patch=1"</screen>Note that the appended information is a variable itself, and therefore - it's possible to used <emphasis>+=</emphasis> or + it's possible to use <emphasis>+=</emphasis> or <emphasis>=+</emphasis> to assign variables to the <emphasis>_append</emphasis> information:<screen>SRC_URI_append = " file://fix-makefile.patch;patch=1" SRC_URI_append += "file://fix-install.patch;patch=1"</screen></para> @@ -225,7 +225,7 @@ SRC_URI_append += "file://fix-install.patch;patch=1"</screen></para> specified target or machine: [TODO: Link to section on overrides]<screen>CFLAGS_prepend_sh4 = " file://fix-makefile.patch;patch=1"</screen>Note that the appended information is a variable itself, and therefore - it's possible to used <emphasis>+=</emphasis> or + it's possible to use <emphasis>+=</emphasis> or <emphasis>=+</emphasis> to assign variables to the <emphasis>_prepend</emphasis> information:<screen>CFLAGS_prepend = "-I${S}/myincludes " CFLAGS_prepend += "-I${S}/myincludes2 "</screen>Note also the lack of a space diff --git a/docs/usermanual/chapters/usage.xml b/docs/usermanual/chapters/usage.xml index 31ba613ca9..058fa5d869 100644 --- a/docs/usermanual/chapters/usage.xml +++ b/docs/usermanual/chapters/usage.xml @@ -1097,7 +1097,7 @@ BB>> build net-snmp</screen>Note that you can use wildcards in the <para>This is the newer method of obtaining a devshell and is the recommended way for most users now. The newer method requires that the - devshell class be added to you configuration by inheriting it. This is + devshell class be added to your configuration by inheriting it. This is usually done in your <emphasis role="bold">local.conf</emphasis> or your distributions conf file:<screen><emphasis role="bold">INHERIT +=</emphasis> "src_distribute_local insane multimachine <emphasis role="bold">devshell</emphasis>"</screen></para> |