From caf6532b519cfbd715fee40ca79e68659e0ce5de Mon Sep 17 00:00:00 2001 From: Scott Rifenbark Date: Thu, 26 Apr 2012 08:46:36 -0600 Subject: documentation: release-specific figure needed for denzil in dev-manual dev-manual/dev-manual-model.xml: The Bare Clone and Copy of the Bare Clone figures are out of date for denzil. These needed to be re-done so they use "linux-yocto-3.2.git" and "my-linux-yocto-3.0-work" as the root names. This presents a Makefile issue when making the denzil and pre-denzil versions of the manuals. Whenever you use a different figure for a different release, you need to involve the BRANCH variable in the Makefile. This is necessary because you are using different figures in the generated tarballs. The set of figures could be unique to the release. The outdated figure is "kernel-overview-3.png" and will eventually be removed (later commit). I created a new figure named "kernel-overview-3-denzil.png" and used that in the dev-manual-model.xml file. documentation/Makefile: I updated the Makefile to test for a "denzil" release build and if so include the new file in the generated tarball. This commit adds the new .PNG file as well. Fixed the Makefile so that if you don't supply a BRANCH value, it uses the latest figures (denzil). (From yocto-docs rev: 49552b12a967f97eb4d75477895bf32f61d69aa6) Signed-off-by: Scott Rifenbark Signed-off-by: Richard Purdie --- documentation/Makefile | 16 +++++++++++++--- documentation/dev-manual/dev-manual-model.xml | 2 +- .../dev-manual/figures/kernel-overview-3-denzil.png | Bin 0 -> 42285 bytes 3 files changed, 14 insertions(+), 4 deletions(-) create mode 100644 documentation/dev-manual/figures/kernel-overview-3-denzil.png (limited to 'documentation') diff --git a/documentation/Makefile b/documentation/Makefile index 7cf1c6727e..3a12c0e0f8 100644 --- a/documentation/Makefile +++ b/documentation/Makefile @@ -82,7 +82,8 @@ ALLPREQ = html pdf tarball # # Note that the tarfile might produce the "Cannot stat: No such file or directory" error # message for .PNG files that are not present when building a particular branch. The -# list of files is all-inclusive for all branches. +# list of files is all-inclusive for all branches. Note, if you don't provide a BRANCH +# option, it defaults to the latest stuff. This would be appropriate for "master" branch. # ifeq ($(BRANCH),edison) @@ -94,13 +95,22 @@ TARFILES = style.css dev-manual.html dev-manual.pdf \ figures/kernel-overview-3-edison.png \ figures/source-repos.png figures/yp-download.png \ figures/wip.png - else + else ifeq ($(BRANCH),denzil) TARFILES = style.css dev-manual.html dev-manual.pdf \ figures/app-dev-flow.png figures/bsp-dev-flow.png figures/dev-title.png \ figures/git-workflow.png figures/index-downloads.png figures/kernel-dev-flow.png \ figures/kernel-example-repos.png \ figures/kernel-overview-1.png figures/kernel-overview-2.png \ - figures/kernel-overview-3.png \ + figures/kernel-overview-3-denzil.png \ + figures/source-repos.png figures/yp-download.png \ + figures/wip.png + else +TARFILES = style.css dev-manual.html dev-manual.pdf \ + figures/app-dev-flow.png figures/bsp-dev-flow.png figures/dev-title.png \ + figures/git-workflow.png figures/index-downloads.png figures/kernel-dev-flow.png \ + figures/kernel-example-repos.png \ + figures/kernel-overview-1.png figures/kernel-overview-2.png \ + figures/kernel-overview-3-denzil.png \ figures/source-repos.png figures/yp-download.png \ figures/wip.png endif diff --git a/documentation/dev-manual/dev-manual-model.xml b/documentation/dev-manual/dev-manual-model.xml index 9329397236..be854b99d9 100644 --- a/documentation/dev-manual/dev-manual-model.xml +++ b/documentation/dev-manual/dev-manual-model.xml @@ -336,7 +336,7 @@ - diff --git a/documentation/dev-manual/figures/kernel-overview-3-denzil.png b/documentation/dev-manual/figures/kernel-overview-3-denzil.png new file mode 100644 index 0000000000..5f2ea05789 Binary files /dev/null and b/documentation/dev-manual/figures/kernel-overview-3-denzil.png differ -- cgit v1.2.3-54-g00ecf