summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* packaging: allow globs in CONFFILESChen Qi2015-02-194-21/+64
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Allow globs in CONFFILES. This patch changes the way of CONFFILES handling. After this change, the CONFFILES can take the same form as FILES. That means, we don't have to list a bunch of files for CONFFILES. It will just be expanded like the FILES variable. We don't assume default value for CONFFILES in OE. But distro vendors could provide a default value for CONFFILES in their distro configuration file like below. CONFFILES = "${sysconfdir}" In this way, files under /etc are treated as configuration files by default. Of course, setting CONFFILES in recipes take precedence over the CONFFILES. For example, if the recipe author decides that package A should only treat files under ${sysconfdir}/default/ as config files, he/she can write like this. CONFFILES_A = "${sysconfdir}/default" [YOCTO #5200] (From OE-Core rev: 0d446ef0e5bbca7058eec7259e34f2a1637dfab1) Signed-off-by: Chen Qi <Qi.Chen@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* qt-mobility: Add patch to fix disabling bluez compile issuesRichard Purdie2015-02-192-0/+339
| | | | | | | | | | If you disable bluez but have dbus enabled, the build would fail. This patch fixes the issue so that bluez5 based builds work. (From OE-Core rev: 1324839b2be97c19e0a1fbd6ec8d3357731e5973) Signed-off-by: Cristian Iorga <cristian.iorga@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* oeqa/ptest: Fixed complementary package install detection and added ↵Lucian Musat2015-02-191-3/+6
| | | | | | | | | ptest-runner exit code check (From OE-Core rev: b214c7b901fe0fad081d7a97f9e91cc218c66bd6) Signed-off-by: Lucian Musat <george.l.musat@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* license.bbclass: fix unexpected operator for LICENSE values with spaceMartin Jansa2015-02-171-1/+1
| | | | | | | | | | | * add quotes around pkged_lic so that it works correctly with spaces * fixes following error: run.license_create_manifest.50601: 193: [: GPLv2: unexpected operator (From OE-Core rev: 2bb8b2abb689d91b7b7e28e6bd528747bde94dd2) Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* valgrind: add glibc-2.21 to glibc.patchMartin Jansa2015-02-172-3/+10
| | | | | | | (From OE-Core rev: 68ccb00b024efccb70efffc80a57b819f10a95e0) Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* useradd.bbclass: avoid do_rootfs error for debian package backendChen Qi2015-02-171-0/+10
| | | | | | | | | | | | | | | | | | | | | | | If /etc/login.defs is treated as a configuration file, then we would meet errors at do_rootfs time telling us that useradd/groupadd cannot execute correctly. This is because the dpkg handles config file specially, the login.defs is temporarily renamed as login.defs.dpkg-new. How ubuntu deals the user/group adding problem? They do it at postinst of the package. And, the postinst script of a package would possibly do `chown' of its files or directories. The above strategy is not suitable for OE. Because we do chown in do_install and add user/group in preinst scripts of the packages. That's why we need this patch so that do_rootfs don't fail. (From OE-Core rev: d98e5ec575f542b3afaabd96b07ae9a21e1c22f4) Signed-off-by: Chen Qi <Qi.Chen@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* update-rc.d: use '-f' option in updatercd_postrmChen Qi2015-02-171-2/+2
| | | | | | | | | | | | | | | | | | | | Use '-f' ('--force') option so that while removing packages using deb, we don't fail because of the following error: update-rc.d: $initd/$bn exists during rc.d purge (use -f to force) Using '-f' option would make this a warning but continue to execute. update-rc.d: $initd/$bn exists during rc.d purge (continuing) We need this option because dpkg package backend have special handling for configuration files. And if files under /etc/init.d are treated as configuration files, we will have errors. (From OE-Core rev: ebb2d557bbf410d98040cdaabbddd7e3ee0a9709) Signed-off-by: Chen Qi <Qi.Chen@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* package_manager.py: use 'purge' instead of 'remove' in case of debChen Qi2015-02-171-2/+2
| | | | | | | | | | | We need to use 'purge' instead of 'remove' for debian package backend when removing packages at rootfs time. This is because that 'remove' command for 'dpkg' and 'apt-get' does not remove configuration files. (From OE-Core rev: 14e8d826c4a5231ef331d8064d150737fe3ed656) Signed-off-by: Chen Qi <Qi.Chen@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* scripts: delete dummy help2man scriptPaul Gortmaker2015-02-171-3/+0
| | | | | | | | | | | | | | | | | | | This was added to try and deal with the cross compile issue of help2man ; one can not run an ARM binary "./chmod --help" on an x86-64 host in order to get the help text to create a man page. This has been primarily an issue with the coreutils package. However, we have since fixed coreutils to have useful pre-made manpages and we don't need this script anymore. And if other gnu packages are getting useless truncated "dummy" manpages, we want the build to fail so we can fix those packages in a similar way, vs. having the issue hidden via a help2man that is a no-op. (From OE-Core rev: 3fc812377baf95768cef0b7728a73a4b9e07f2ab) Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* coreutils: import prebuilt manpages from GentooPaul Gortmaker2015-02-171-3/+18
| | | | | | | | | | | | | | | | | | | | As can be seen here: http://lists.gnu.org/archive/html/coreutils/2014-11/msg00001.html other people have run into the headache of trying to cross compile coreutils, with the "help2man" problem (assumes host can run the target binaries with "--help" arg to collect data for manpage.) And since "current wisdom is this is working as intended" we are largely left with no choice but to use the same solution and abandon trying to generate the man pages at build time. So here we import prebuilt manpages. (From OE-Core rev: 1c0bdebbe362dc47b3b6f521ba15ccf0de15e5b5) Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* coreutils: don't generate useless dummy stub manpagesPaul Gortmaker2015-02-174-55/+28
| | | | | | | | | | | | | | | | | | | | | | | | | We had a couple patches to 1) deal with missing perl and 2) deal with the perl-less "dummy" help2man fallout, but in the end, they achieve no purpose whatsoever, since they just populate the doc RPM with manpages like this one: NAME chmod - a GNU coreutils 8.22 program DESCRIPTION OOOPS! Due to the lack of perl on the build system, we were unable to create a proper manual page for chmod. As the above serves no purpose whatsoever, and since the concept of running the binaries to capture the "--help" text output is completely broken for cross compiles, lets just decouple man page generation from the building of coreutils entirely so it paves the way for importing pre-generated manpages. (From OE-Core rev: cb2519466b4d28217ae955370077bc4a8f9b6dce) Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* utils.bbclass: fix create_cmdline_wrapperJavier Viguera2015-02-171-2/+2
| | | | | | | | | | | | | | | | | | | Similar to commit 4569d74 for create_wrapper function, this commit fixes hardcoded absolute build paths in create_cmdline_wrapper. Otherwise we end up with incorrect paths in users of this function. For example the 'file' wrapper in current released toolchain: exec -a /home/pokybuild/yocto-autobuilder/yocto-worker/nightly-fsl-arm/build/build/tmp/work/x86_64-nativesdk-pokysdk-linux/nativesdk-file/5.18-r0/image//opt/poky/1.7.1/sysroots/x86_64-pokysdk-linux/usr/bin/file `dirname $realpath`/file.real --magic-file /opt/poky/1.7.1/sysroots/x86_64-pokysdk-linux/usr/share/misc/magic.mgc "$@" (From OE-Core rev: 49ab89eb9f83388e99069a4b53bdc4cba22bb6f3) Signed-off-by: Javier Viguera <javier.viguera@digi.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* ref-manual: Review edits to the AUTOREV variable.Scott Rifenbark2015-02-171-6/+8
| | | | | | | | | | | Fixes [YOCTO #7306] Some review updates to have better wording. (From yocto-docs rev: 6f2d10c87128934958295111d10e038689fd94d3) Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* ref-manual: Updates to AUTOREV and SRCREV variable descriptionsScott Rifenbark2015-02-171-7/+33
| | | | | | | | | | | | | | | | | | | Fixes [YOCTO #7306] Added an example for when the user tries to inherit the most recent version of software through use of the SRCREV variable. When using SRCREV = "${AUTOREV}" PV does not always get ${SRCPV}, which it need in order to fetch the latest software. I added a clarifying example to explain this situation. This commit also has a small change to fix a broken link to EXTERNAL_TOOLCHAIN. We do not documentat that variable so I removed the link. (From yocto-docs rev: 82f66a7193d0e40ffd65547223d4d9b10fdcf9bd) Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* toaster-manual: 2nd draft for review.Scott Rifenbark2015-02-173-290/+374
| | | | | | | | | | | Fixes [YOCTO #6901] This is the 2nd review draft of the manual. (From yocto-docs rev: 9f541e4421e0e74e59e3b3da1896b6c1254daf08) Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* adt-manual, ref-manual: Detail on using an external toolchain.Scott Rifenbark2015-02-172-16/+61
| | | | | | | | | | | | | | | | | | | Fixes [YOCTO #4907] I created a new section in the toolchain chapter of the adt-manual called "optionally Using an External Toolchain". This provides some fundamental information for the user that wants to use an external toolchain. Additionally, it references Mentor Graphics Sourcery toolchain as an example. In the ref-manual, I updated the TCMODE variable description to better integrate the MGC Sourcery toolchain as the overriding example. (From yocto-docs rev: 51e9c3b88f7e5a16da2aa101589b0f2612fff11d) Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* ref-manual: Added 'debug-tweaks' fragmentation.Scott Rifenbark2015-02-172-5/+30
| | | | | | | | | | | | | | | The image feature 'debug-tweaks' has been fragmented into three separate areas of functionality that deals with handling empty passwords and post-installation logging. I updated the list of image features appropriately and the description of 'debug-tweaks' in the EXTRA_IMAGE_FEATURES variable. Fixes [YOCTO #5344] (From yocto-docs rev: ce0ab20472a75049298287cd05109f6e091b80bd) Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* ref-manual: Updates to some variables per review comments.Scott Rifenbark2015-02-171-4/+30
| | | | | | | | | | | | | | | Updates to the following: BUILD_ARCH SOURCE_MIRROR_FETCH TARGET_PREFIX SDK_PREFIX SDK_SYS (I added this one new). (From yocto-docs rev: ad5f9b56dc912783b415b30604456bd5071f9721) Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* ref-manual, mega-manual: Adjustments to variable context imagesScott Rifenbark2015-02-174-493/+486
| | | | | | | | | | | | | | | | | | | | | | Fixes [YOCTO #5601] Discovered that the solution I had to display a small PNG file to indicate the context a variable is used in the build system was not displaying properly in the ref-manual variable glossary when using the Chrome browser. The solution was to adjust some settings in the CSS file and place the image after the term. This allowed me to dump the webkit stuff that I had inserted into the CSS file styles to make it work in Mozilla, which ended up not working in Chrome. Additionally, I needed to update the 'define-generic.png' file to have less white space on top as part of the figure. Note that this commit adds the figure to Git for tracking as well. (From yocto-docs rev: 59a1295aeb1c866f330634907ad28642a997cd63) Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* ref-manual: Updated the ASSUME_SHLIB variable.Scott Rifenbark2015-02-171-4/+3
| | | | | | | | | Applied a different example from Paul. (From yocto-docs rev: b21ef6a792361eb0893ee17524794fba3bed885c) Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* ref-manual: Added new variable description for BUILD_VENDOR.Scott Rifenbark2015-02-171-0/+13
| | | | | | | (From yocto-docs rev: d38bf6819c5a2c4e7aea0ba3a741c18365c760ff) Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* ref-manual: Added variable description for BUILD_PREFIX.Scott Rifenbark2015-02-171-0/+15
| | | | | | | (From yocto-docs rev: d4ab1886cb5c4b65afa2c0e8e2e1b2ce567b4d2e) Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* ref-manual: Added new description for SDK_VENDOR.Scott Rifenbark2015-02-171-0/+11
| | | | | | | (From yocto-docs rev: 20d1d9145926b459dff39bfe39d71b78a25cd387) Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* ref-manual: Edits to the SDK_SYS variable.Scott Rifenbark2015-02-171-4/+14
| | | | | | | (From yocto-docs rev: 520ded3e50a0299164b3b941cca99b677fa83dad) Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* ref-manual: Added new variable description for SDK_SYS.Scott Rifenbark2015-02-171-0/+13
| | | | | | | (From yocto-docs rev: cc5d9a1a090023f79440f6c1d60efab53b1aef21) Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* ref-manual: Added new description for SDK_OS.Scott Rifenbark2015-02-171-0/+14
| | | | | | | (From yocto-docs rev: f71c032bb51608ab2fe8e5735c423a8a86e6d37e) Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* ref-manual: Created new SDK_PREFIX glossary entry.Scott Rifenbark2015-02-171-0/+15
| | | | | | | (From yocto-docs rev: c72b97ec58e609d63920c431b5948c8dd09d2595) Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* ref-manual: Updates to TARGET_PREFIX and STAGING_DIR_HOST variables.Scott Rifenbark2015-02-171-9/+9
| | | | | | | | | | Small typo fix for STAGING_DIR_HOST. Some re-wordings for TARGET_PREFIX. (From yocto-docs rev: 919a13436de6ea150f685a50b6ecc8154b75da86) Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* ref-manual: Updated the SOURCE_MIRROR_FETCH variable description.Scott Rifenbark2015-02-171-14/+14
| | | | | | | | | | Did a significant re-write on this description as I had the meaning pretty far off. (From yocto-docs rev: 6bcc63ac83f0aeb3d3d06db33c7a8f010c737312) Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* ref-manual: Updated the Date variable description.Scott Rifenbark2015-02-171-1/+1
| | | | | | | | | Re-worded the way you say the date. (From yocto-docs rev: 3c6b51fb474628954654f2f1290509a78a48a1fb) Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* ref-manual: Updated the BUILD_OS variable description.Scott Rifenbark2015-02-171-6/+5
| | | | | | | | | Fixed the meaning up. (From yocto-docs rev: 1b057475acd2bf33bb6fa3bd03e85a415697873f) Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* ref-manual: Updated the BUILD_ARCH variable description.Scott Rifenbark2015-02-171-3/+3
| | | | | | | | | Better wording. (From yocto-docs rev: f048485fb69c4355d01ad1299f5d9187d767806a) Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* ref-manual: Updated the ASSUME_SHLIBS variable.Scott Rifenbark2015-02-171-3/+11
| | | | | | | | | Added an example. (From yocto-docs rev: 7a22c2941618f29ad89087c186ae2af6f0c07323) Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* dev-manual: Edit to wording in "Avoid Duplicating Include Files"Scott Rifenbark2015-02-171-1/+1
| | | | | | | | | Changed wording to be more accurate. (From yocto-docs rev: 1acb7ce94a4f4b02cc50d1e098f04a77d9a53ab3) Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* ref-manual: Updated the following variables based on review comments:Scott Rifenbark2015-02-171-28/+151
| | | | | | | | | | | | | | | | | | | | | ASSUME_SHLIBS BBINCLUDELOGS_LINES BUILD_ARCH BUILD_OS CACHE DATE PACKAGE_INSTALL_ATTEMPTONLY PRIORITY SOURCE_MIRROR_FETCH TARGET_PREFIX TARGET_SYS TIME CROSS_COMPILE (From yocto-docs rev: c55ab3cb5ef9d517ea5f29d2be8999cc1dc7e085) Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* ref-manual: Updates to SDKTARGETSYSROOT and PKG_CONFIG_PATH variables.Scott Rifenbark2015-02-171-4/+9
| | | | | | | | | Applied some review edits to these two variable descriptions. (From yocto-docs rev: fb1eb903b9bcc8b0bb67e72c795a1dd602143589) Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* dev-manual: Updates to "Avoiding Duplicating Include Files" section.Scott Rifenbark2015-02-171-20/+8
| | | | | | | | | | | | | | I removed the last paragraph example as it is not a good example. Unfortunately, there is not a good example so I replaced it with a minor suggestive work-around at the end of the first paragraph. Also, used some <replaceable></replaceable> formatting for the first paragraph. (From yocto-docs rev: 6c3989fd4fe41a6434d70208d59747060e62a366) Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* ref-manual: Added "leakage" FAQ entry.Scott Rifenbark2015-02-171-0/+35
| | | | | | | | | | | | | | | Fixes [YOCTO #6852] I added a new FAQ entry to address situations where during a native build, the build fails due to previously installed stuff on the system from /usr/local/include and /opt. The entry tries to cover "leakage" issues in general but calls out the specific case involving libiconv and iconv.h. (From yocto-docs rev: 2c09c7ee0970189953bfbbdcaac49a1ebe8482fe) Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* toaster-manual: Updated tar contents to not include the PDF file.Scott Rifenbark2015-02-171-1/+1
| | | | | | | (From yocto-docs rev: b80931a3930ac4eda8daec37dc3de0f1d4d3844e) Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* mega-manual: Edits to fix titlingScott Rifenbark2015-02-171-18/+123
| | | | | | | | | | | | | | | | | | | | | The way the mega-manual used 'xinclude' to suck in the other YP manuals was to suck in the root XML file. The problem with this was that the root XML file for each subsequent book would include front-matter information. The front-matter information included an .authorgroup style, which caused the new mega-manual title displayed at the very top to be also re-displayed with a subsequent manual's title. These changes altered the strategy for using 'xinclude' to pull in the various YP manuals. Rather than pull in the root XML file for a given manual, individual chapters are pulled in that comprise a given manual. A slight side-effect is that chapter numbering is sequential from top to bottom in the mega-manual, which I suppose is better as it is being presented as an entire manual anyway. (From yocto-docs rev: 61cc9f2f92900894ef09ff13e1e92ebe30a17be3) Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* mega-manual: Fixed reference to style sheet.Scott Rifenbark2015-02-171-1/+1
| | | | | | | | | | | the customization layer for some reason was referencing the ref-style.css file instead of the mega-style.css. I changed this over. (From yocto-docs rev: f47e14c27cde0a436a9ffbf26ca425951eae5d4e) Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* toaster-manual: Cleaned up the intro chapterScott Rifenbark2015-02-171-289/+0
| | | | | | | | | | | | Fixes [YOCTO #6901] I removed some left over stuff from the intro that should not have been in there. (From yocto-docs rev: 91d1ee2b4433312e0f94e1ac99f8ec0e14ef6ac7) Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* mega-manual: Updated sed file to include the toaster manual.Scott Rifenbark2015-02-171-0/+1
| | | | | | | | | | | Added logic to string search and fix links in the Toaster Manual part of the mega-manual. This keeps the links correct for the mega-manual. (From yocto-docs rev: f93b5a187984949129db16b638935b678fd344a1) Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* mega-manual: Added toaster-title.png and code to include toaster-manualScott Rifenbark2015-02-172-0/+5
| | | | | | | | | | | | | | | Fixes [YOCTO #6901] Added the toaster-title.png file to the mega-manual/figures folder so the Toaster title would show up in the mega-manual. Added lines so that the mega-manual would include the Toaster manual file to the mega-manual. (From yocto-docs rev: 5a4a67e4f140802da133b7bcb480c84b4a8edb63) Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* Makefile: Removed default PDF creation of Toaster Manual.Scott Rifenbark2015-02-171-1/+1
| | | | | | | (From yocto-docs rev: 7cceb7b0a0f53a4207070ff369bec8a3a6ceb135) Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* toaster-manual: Added two chapter files.Scott Rifenbark2015-02-172-0/+401
| | | | | | | | | | | Fixes [YOCTO #6901] These are the second and third chapters of the Toaster Manual. (From yocto-docs rev: 6ff4e3dfff391efdbb0f36dc6800bf115abcfc92) Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* toaster-manual: Changed from "current" to "1.76.1" XSL templatesScott Rifenbark2015-02-171-1/+1
| | | | | | | | | | | Fixes [YOCTO #6901] Makes it so the boxes appear around the manual revision table. (From yocto-docs rev: f3ee2bc1ef957a585d0f814b91451a8460dec8c1) Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* toaster-manual: Edits to the intro chapterScott Rifenbark2015-02-171-27/+45
| | | | | | | | | Fixes [YOCTO #6901] (From yocto-docs rev: 633368738e244313168edab86e843b8895e818e3) Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* toaster-manual: Added two chapters to the manual's book file.Scott Rifenbark2015-02-171-0/+4
| | | | | | | | | | | | Added both chapters that follow the intro chapter to the root file so they will build as part of the book. Fixes [YOCTO #6901] (From yocto-docs rev: 37967896f12471d34188cd532e00211ca665910b) Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* toaster-manual: WIP - Some placeholder introductory text.Scott Rifenbark2015-02-171-1/+356
| | | | | | | (From yocto-docs rev: 50af668137ec11105f08398bf92649217f75aad3) Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>