mirror of
https://git.yoctoproject.org/poky
synced 2026-04-26 18:32:13 +02:00
I took Bill's chapter and made it into an appendix. I did some re-writing to make it not so much like a getting-started feel, although it still leans way that way for an appendix. The content is not complete. Had to add in a line to the user-manual.xml file so that the new appendix would be part of the book. Had to use a different form of the command in the user-manual-cusomization.xsl file in order to not through a bunch of errors for an unrecognized parameter value. I commented out the existing one. (Bitbake rev: 80e9306c288ca2ab42585f99fb0f396253cb8253) Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
16 lines
740 B
XML
16 lines
740 B
XML
<?xml version='1.0'?>
|
|
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns="http://www.w3.org/1999/xhtml" xmlns:fo="http://www.w3.org/1999/XSL/Format" version="1.0">
|
|
|
|
<xsl:import href="http://docbook.sourceforge.net/release/xsl/current/xhtml/docbook.xsl" />
|
|
|
|
<xsl:param name="html.stylesheet" select="'user-manual-style.css'" />
|
|
<xsl:param name="chapter.autolabel" select="1" />
|
|
<!-- <xsl:param name="appendix.autolabel" select="A" /> -->
|
|
<xsl:param name="section.autolabel" select="1" />
|
|
<xsl:param name="section.label.includes.component.label" select="1" />
|
|
<xsl:param name="appendix.autolabel">A</xsl:param>
|
|
|
|
<!-- <xsl:param name="generate.toc" select="'article nop'"></xsl:param> -->
|
|
|
|
</xsl:stylesheet>
|