From 3988462de2a1c1b66dd544ebea388b8fdff7f54a Mon Sep 17 00:00:00 2001 From: Cliff Brake Date: Tue, 24 Nov 2009 13:25:35 -0500 Subject: docs: fix type in Makefile --- docs/usermanual/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'docs') 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 -- cgit v1.2.3 From 8cbf232335775c66034bc5d6da148df637a41ee5 Mon Sep 17 00:00:00 2001 From: Cliff Brake Date: Tue, 24 Nov 2009 13:27:27 -0500 Subject: usermanual: add entries to .gitignore for ps, etc --- docs/usermanual/.gitignore | 2 ++ 1 file changed, 2 insertions(+) (limited to 'docs') 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 -- cgit v1.2.3 From 7c7550ac80575d9a32714fa9c7d91ee2d0ad23bd Mon Sep 17 00:00:00 2001 From: "Robert P. J. Day" Date: Sun, 29 Nov 2009 05:36:41 +0000 Subject: usermanual: Update usermanual bitbake references to 1.8.18. Signed-off-by: Robert P. J. Day Signed-off-by: Holger Hans Peter Freyther --- docs/usermanual/chapters/getting_oe.xml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'docs') 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 @@ $ cd $OEBASE
Downloading a <application>BitBake</application> release Releases are available from the berlios project website. The current release series is BitBake 1.8 - and the current release is 1.8.16. To download execute + and the current release is 1.8.18. To download execute the following commands: $ cd $OEBASE -$ wget http://download.berlios.de/bitbake/bitbake-1.8.16.tar.gz -$ tar -xvzf bitbake-1.8.16.tar.gz -$ mv bitbake-1.8.16 bitbake +$ wget http://download.berlios.de/bitbake/bitbake-1.8.18.tar.gz +$ tar -xvzf bitbake-1.8.18.tar.gz +$ mv bitbake-1.8.18 bitbake -- cgit v1.2.3 From 9cc0b51c652a1da956f8b67d6836bb99a530f464 Mon Sep 17 00:00:00 2001 From: Paul Menzel Date: Sun, 13 Dec 2009 16:47:05 +0100 Subject: Typo. s/to used/to use/ Signed-off-by: Paul Menzel --- docs/usermanual/chapters/recipes.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'docs') 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" which results in the actions only being performed for the specified target or machine: [TODO: Link to section on overrides]SRC_URI_append_sh4 = " file://fix-makefile.patch;patch=1"Note that the appended information is a variable itself, and therefore - it's possible to used += or + it's possible to use += or =+ to assign variables to the _append information:SRC_URI_append = " file://fix-makefile.patch;patch=1" SRC_URI_append += "file://fix-install.patch;patch=1" @@ -225,7 +225,7 @@ SRC_URI_append += "file://fix-install.patch;patch=1" specified target or machine: [TODO: Link to section on overrides]CFLAGS_prepend_sh4 = " file://fix-makefile.patch;patch=1"Note that the appended information is a variable itself, and therefore - it's possible to used += or + it's possible to use += or =+ to assign variables to the _prepend information:CFLAGS_prepend = "-I${S}/myincludes " CFLAGS_prepend += "-I${S}/myincludes2 "Note also the lack of a space -- cgit v1.2.3 From f6633611d10685a295020ca278bb2efbcc8ddfec Mon Sep 17 00:00:00 2001 From: Rolf Leggewie Date: Mon, 11 Jan 2010 22:32:00 +0100 Subject: docs/usermanual/chapters/usage.xml: fix minor spelling error --- docs/usermanual/chapters/usage.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'docs') 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-snmpNote that you can use wildcards in the 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 local.conf or your distributions conf file:INHERIT += "src_distribute_local insane multimachine devshell" -- cgit v1.2.3