2006-03-07 21:02:53 +01:00
|
|
|
<?xml version="1.0"?>
|
|
|
|
|
2006-03-08 21:12:27 +01:00
|
|
|
<!-- $Id$ -->
|
|
|
|
|
2006-03-07 21:02:53 +01:00
|
|
|
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
|
|
|
|
xmlns:exsl="http://exslt.org/common"
|
|
|
|
extension-element-prefixes="exsl"
|
|
|
|
version="1.0">
|
|
|
|
|
|
|
|
<!-- XSLT stylesheet to create shell scripts from LFS books. -->
|
|
|
|
|
2007-09-19 21:58:22 +02:00
|
|
|
<!-- ####################### PARAMETERS ################################### -->
|
|
|
|
|
2006-03-09 23:23:47 +01:00
|
|
|
<!-- Run test suites?
|
|
|
|
0 = none
|
|
|
|
1 = only chapter06 Glibc, GCC and Binutils testsuites
|
|
|
|
2 = all chapter06 testsuites
|
2006-08-05 17:42:52 +02:00
|
|
|
3 = all chapter05 and chapter06 testsuites
|
|
|
|
-->
|
2006-03-09 23:23:47 +01:00
|
|
|
<xsl:param name="testsuite" select="1"/>
|
2006-03-07 21:02:53 +01:00
|
|
|
|
2006-08-05 17:42:52 +02:00
|
|
|
<!-- Bomb on test suites failures?
|
2006-08-12 21:59:11 +02:00
|
|
|
n = no, I want to build the full system and review the logs
|
|
|
|
y = yes, bomb at the first test suite failure to can review the build dir
|
2006-08-05 17:42:52 +02:00
|
|
|
-->
|
2006-08-12 21:59:11 +02:00
|
|
|
<xsl:param name="bomb-testsuite" select="n"/>
|
2006-08-05 17:42:52 +02:00
|
|
|
|
2006-03-07 21:02:53 +01:00
|
|
|
<!-- Install vim-lang package? -->
|
2006-08-12 21:59:11 +02:00
|
|
|
<xsl:param name="vim-lang" select="y"/>
|
2006-03-07 21:02:53 +01:00
|
|
|
|
2006-03-19 13:44:32 +01:00
|
|
|
<!-- Time zone -->
|
2006-06-04 19:59:02 +02:00
|
|
|
<xsl:param name="timezone" select="GMT"/>
|
2006-03-19 13:44:32 +01:00
|
|
|
|
|
|
|
<!-- Page size -->
|
|
|
|
<xsl:param name="page" select="letter"/>
|
|
|
|
|
2007-09-19 21:58:22 +02:00
|
|
|
<!-- Locale setting -->
|
2006-06-04 19:59:02 +02:00
|
|
|
<xsl:param name="lang" select="C"/>
|
2006-03-19 14:40:28 +01:00
|
|
|
|
2007-09-20 21:44:21 +02:00
|
|
|
|
|
|
|
<!-- ####################################################################### -->
|
|
|
|
|
|
|
|
<!-- ########### NAMED USER TEMPLATES TO ALLOW CUSTOMIZATIONS ############## -->
|
|
|
|
|
|
|
|
<!-- Hock for user header additions -->
|
|
|
|
<xsl:template name="user_header">
|
|
|
|
<xsl:text>
</xsl:text>
|
|
|
|
</xsl:template>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- Hock for user envars or extra commands before cd into the sources dir -->
|
|
|
|
<xsl:template name="user_pre_commands">
|
|
|
|
<xsl:text>
</xsl:text>
|
|
|
|
</xsl:template>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- Hock for user footer additions -->
|
|
|
|
<xsl:template name="user_footer">
|
|
|
|
<xsl:text>
</xsl:text>
|
|
|
|
</xsl:template>
|
|
|
|
|
|
|
|
|
2007-09-19 21:58:22 +02:00
|
|
|
<!-- ####################################################################### -->
|
|
|
|
|
|
|
|
<!-- ########################### NAMED TEMPLATES ########################### -->
|
|
|
|
|
|
|
|
<!-- Chapter directory name (the same used for HTML output) -->
|
|
|
|
<xsl:template name="dirname">
|
|
|
|
<xsl:variable name="pi-dir" select="processing-instruction('dbhtml')"/>
|
|
|
|
<xsl:variable name="pi-dir-value" select="substring-after($pi-dir,'dir=')"/>
|
|
|
|
<xsl:variable name="quote-dir" select="substring($pi-dir-value,1,1)"/>
|
|
|
|
<xsl:variable name="dirname" select="substring-before(substring($pi-dir-value,2),$quote-dir)"/>
|
|
|
|
<xsl:value-of select="$dirname"/>
|
|
|
|
</xsl:template>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- Base file name (the same used for HTML output) -->
|
|
|
|
<xsl:template name="filename">
|
|
|
|
<xsl:variable name="pi-file" select="processing-instruction('dbhtml')"/>
|
|
|
|
<xsl:variable name="pi-file-value" select="substring-after($pi-file,'filename=')"/>
|
|
|
|
<xsl:variable name="filename" select="substring-before(substring($pi-file-value,2),'.html')"/>
|
|
|
|
<xsl:value-of select="$filename"/>
|
|
|
|
</xsl:template>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- Script header -->
|
|
|
|
<xsl:template name="header">
|
2007-09-20 21:44:21 +02:00
|
|
|
<!-- Set the shabang -->
|
2007-09-19 21:58:22 +02:00
|
|
|
<xsl:choose>
|
|
|
|
<xsl:when test="@id='ch-system-creatingdirs' or
|
|
|
|
@id='ch-system-createfiles' or
|
|
|
|
@id='ch-system-strippingagain'">
|
|
|
|
<xsl:text>#!/tools/bin/bash
</xsl:text>
|
|
|
|
</xsl:when>
|
|
|
|
<xsl:otherwise>
|
|
|
|
<xsl:text>#!/bin/bash
</xsl:text>
|
|
|
|
</xsl:otherwise>
|
|
|
|
</xsl:choose>
|
2007-09-20 21:44:21 +02:00
|
|
|
<!-- Set +h -->
|
2007-09-19 21:58:22 +02:00
|
|
|
<xsl:text>set +h
</xsl:text>
|
2007-09-20 21:44:21 +02:00
|
|
|
<!-- Set -e -->
|
2007-09-19 21:58:22 +02:00
|
|
|
<xsl:if test="not(@id='ch-tools-stripping') and
|
|
|
|
not(@id='ch-system-strippingagain')">
|
|
|
|
<xsl:text>set -e
</xsl:text>
|
|
|
|
</xsl:if>
|
|
|
|
<xsl:text>
</xsl:text>
|
|
|
|
</xsl:template>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- Extra previous commands needed by the book but not inside screen tags -->
|
|
|
|
<xsl:template name="pre_commands">
|
|
|
|
<xsl:if test="sect2[@role='installation']">
|
|
|
|
<xsl:text>cd $PKGDIR
</xsl:text>
|
|
|
|
</xsl:if>
|
|
|
|
<xsl:if test="@id='ch-system-vim' and $vim-lang = 'y'">
|
2007-09-21 23:47:06 +02:00
|
|
|
<xsl:text>tar -xvf ../$TARBALL_1 --strip-components=1
</xsl:text>
|
2007-09-19 21:58:22 +02:00
|
|
|
</xsl:if>
|
|
|
|
</xsl:template>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- Extra post commands needed by the book but not inside screen tags -->
|
|
|
|
<xsl:template name="post_commands">
|
|
|
|
<xsl:if test="$testsuite='3' and @id='ch-tools-glibc'">
|
|
|
|
<xsl:copy-of select="//userinput[@remap='locale-test']"/>
|
|
|
|
<xsl:text>
</xsl:text>
|
|
|
|
</xsl:if>
|
|
|
|
</xsl:template>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- Script footer -->
|
|
|
|
<xsl:template name="footer">
|
2007-09-20 21:44:21 +02:00
|
|
|
<!-- Dump the build time -->
|
2007-09-19 21:58:22 +02:00
|
|
|
<xsl:if test="not(@id='ch-system-chroot') and
|
|
|
|
not(@id='ch-system-revisedchroot')">
|
2007-09-20 21:44:21 +02:00
|
|
|
<xsl:text>

echo -e "\n\nTotalseconds: $SECONDS\n"
</xsl:text>
|
2007-09-19 21:58:22 +02:00
|
|
|
</xsl:if>
|
2007-09-20 21:44:21 +02:00
|
|
|
<!-- Exit -->
|
|
|
|
<xsl:text>
exit
</xsl:text>
|
|
|
|
</xsl:template>
|
2007-09-19 21:58:22 +02:00
|
|
|
|
2007-09-20 21:44:21 +02:00
|
|
|
|
2007-09-22 13:33:56 +02:00
|
|
|
<!-- Extra commads needed at the start of some screen block
|
|
|
|
to allow automatization -->
|
|
|
|
<xsl:template name="top_screen_build_fixes">
|
|
|
|
<!-- Fix Udev reinstallation after a build failure or on iterative builds -->
|
|
|
|
<xsl:if test="contains(string(),'firmware,udev')">
|
|
|
|
<xsl:text>if [[ ! -d /lib/udev/devices ]] ; then
</xsl:text>
|
|
|
|
</xsl:if>
|
|
|
|
</xsl:template>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- Extra commads needed at the end of some screen block
|
|
|
|
to allow automatization -->
|
|
|
|
<xsl:template name="bottom_screen_build_fixes">
|
|
|
|
<!-- Fix Udev reinstallation after a build failure or on iterative builds -->
|
|
|
|
<xsl:if test="contains(string(),'firmware,udev')">
|
|
|
|
<xsl:text>
fi</xsl:text>
|
|
|
|
</xsl:if>
|
|
|
|
<!-- Copying the kernel config file -->
|
|
|
|
<xsl:if test="string() = 'make mrproper'">
|
|
|
|
<xsl:text>
cp -v ../kernel-config .config</xsl:text>
|
|
|
|
</xsl:if>
|
|
|
|
<!-- Don't stop on strip run -->
|
|
|
|
<xsl:if test="contains(string(),'strip --strip')">
|
|
|
|
<xsl:text> || true</xsl:text>
|
|
|
|
</xsl:if>
|
|
|
|
</xsl:template>
|
|
|
|
|
|
|
|
|
2007-09-20 21:44:21 +02:00
|
|
|
<!-- Extract a package name from a package URL -->
|
|
|
|
<xsl:template name="package_name">
|
|
|
|
<xsl:param name="url" select="foo"/>
|
|
|
|
<xsl:param name="sub-url" select="substring-after($url,'/')"/>
|
|
|
|
<xsl:choose>
|
|
|
|
<xsl:when test="contains($sub-url,'/')">
|
|
|
|
<xsl:call-template name="package_name">
|
|
|
|
<xsl:with-param name="url" select="$sub-url"/>
|
|
|
|
</xsl:call-template>
|
|
|
|
</xsl:when>
|
|
|
|
<xsl:otherwise>
|
|
|
|
<xsl:value-of select="$sub-url"/>
|
|
|
|
</xsl:otherwise>
|
|
|
|
</xsl:choose>
|
2007-09-19 21:58:22 +02:00
|
|
|
</xsl:template>
|
|
|
|
|
2007-09-20 21:44:21 +02:00
|
|
|
|
2007-09-19 21:58:22 +02:00
|
|
|
<!-- ######################################################################## -->
|
|
|
|
|
|
|
|
<!-- ############################# MATCH TEMPLATES ########################## -->
|
|
|
|
|
|
|
|
<!-- Root element -->
|
2006-03-07 21:02:53 +01:00
|
|
|
<xsl:template match="/">
|
2007-09-20 21:44:21 +02:00
|
|
|
<!-- Start processing at chapter level -->
|
2007-09-19 21:58:22 +02:00
|
|
|
<xsl:apply-templates select="//chapter"/>
|
2006-03-07 21:02:53 +01:00
|
|
|
</xsl:template>
|
|
|
|
|
2007-09-19 21:58:22 +02:00
|
|
|
|
|
|
|
<!-- chapter -->
|
|
|
|
<xsl:template match="chapter">
|
|
|
|
<xsl:if test="@id='chapter-temporary-tools' or @id='chapter-building-system'
|
|
|
|
or @id='chapter-bootscripts' or @id='chapter-bootable'">
|
|
|
|
<!-- The dir name -->
|
|
|
|
<xsl:variable name="dirname">
|
|
|
|
<xsl:call-template name="dirname"/>
|
|
|
|
</xsl:variable>
|
|
|
|
<!-- The chapter order position -->
|
|
|
|
<xsl:variable name="ch_position" select="position()"/>
|
|
|
|
<xsl:variable name="ch_order">
|
2006-03-07 21:02:53 +01:00
|
|
|
<xsl:choose>
|
2007-09-19 21:58:22 +02:00
|
|
|
<xsl:when test="string-length($ch_position) = 1">
|
2006-03-07 21:02:53 +01:00
|
|
|
<xsl:text>0</xsl:text>
|
2007-09-19 21:58:22 +02:00
|
|
|
<xsl:value-of select="$ch_position"/>
|
2006-03-07 21:02:53 +01:00
|
|
|
</xsl:when>
|
|
|
|
<xsl:otherwise>
|
2007-09-19 21:58:22 +02:00
|
|
|
<xsl:value-of select="$ch_position"/>
|
2006-03-07 21:02:53 +01:00
|
|
|
</xsl:otherwise>
|
|
|
|
</xsl:choose>
|
|
|
|
</xsl:variable>
|
2007-09-20 21:44:21 +02:00
|
|
|
<!-- Process the childrens -->
|
2007-09-19 21:58:22 +02:00
|
|
|
<xsl:apply-templates select="sect1">
|
|
|
|
<xsl:with-param name="ch_order" select="$ch_order"/>
|
|
|
|
<xsl:with-param name="dirname" select="$dirname"/>
|
|
|
|
</xsl:apply-templates>
|
|
|
|
</xsl:if>
|
|
|
|
</xsl:template>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- sect1 -->
|
|
|
|
<xsl:template match="sect1">
|
|
|
|
<!-- Inherited chapter order -->
|
|
|
|
<xsl:param name="ch_order" select="foo"/>
|
|
|
|
<!-- Inherited dir name -->
|
|
|
|
<xsl:param name="dirname" select="foo"/>
|
2007-09-21 23:47:06 +02:00
|
|
|
<!-- Process only files with actual build commands -->
|
2007-09-19 21:58:22 +02:00
|
|
|
<xsl:if test="count(descendant::screen/userinput) > 0 and
|
|
|
|
count(descendant::screen/userinput) >
|
|
|
|
count(descendant::screen[@role='nodump'])">
|
|
|
|
<!-- Base file name -->
|
|
|
|
<xsl:variable name="filename">
|
|
|
|
<xsl:call-template name="filename"/>
|
|
|
|
</xsl:variable>
|
|
|
|
<!-- Sect1 order position -->
|
|
|
|
<xsl:variable name="sect1_position" select="position()"/>
|
|
|
|
<xsl:variable name="sect1_order">
|
2006-03-07 21:02:53 +01:00
|
|
|
<xsl:choose>
|
2007-09-19 21:58:22 +02:00
|
|
|
<xsl:when test="string-length($sect1_position) = 1">
|
|
|
|
<xsl:text>0</xsl:text>
|
|
|
|
<xsl:value-of select="$sect1_position"/>
|
2006-03-07 21:02:53 +01:00
|
|
|
</xsl:when>
|
|
|
|
<xsl:otherwise>
|
2007-09-19 21:58:22 +02:00
|
|
|
<xsl:value-of select="$sect1_position"/>
|
2006-03-07 21:02:53 +01:00
|
|
|
</xsl:otherwise>
|
|
|
|
</xsl:choose>
|
2007-09-19 21:58:22 +02:00
|
|
|
</xsl:variable>
|
|
|
|
<!-- Script build order -->
|
|
|
|
<xsl:variable name="order" select="concat($ch_order,'_',$sect1_order)"/>
|
|
|
|
<!-- Creating dirs and files -->
|
|
|
|
<exsl:document href="{$dirname}/{$order}-{$filename}" method="text">
|
|
|
|
<xsl:call-template name="header"/>
|
2007-09-20 21:44:21 +02:00
|
|
|
<xsl:call-template name="user_header"/>
|
|
|
|
<xsl:apply-templates select="sect1info[@condition='script']">
|
|
|
|
<xsl:with-param name="phase" select="$filename"/>
|
|
|
|
</xsl:apply-templates>
|
|
|
|
<xsl:call-template name="user_pre_commands"/>
|
2007-09-19 21:58:22 +02:00
|
|
|
<xsl:call-template name="pre_commands"/>
|
2007-09-19 18:50:48 +02:00
|
|
|
<xsl:apply-templates select=".//screen"/>
|
2007-09-19 21:58:22 +02:00
|
|
|
<xsl:call-template name="post_commands"/>
|
2007-09-20 21:44:21 +02:00
|
|
|
<xsl:call-template name="user_footer"/>
|
2007-09-19 21:58:22 +02:00
|
|
|
<xsl:call-template name="footer"/>
|
2006-03-07 21:02:53 +01:00
|
|
|
</exsl:document>
|
|
|
|
</xsl:if>
|
|
|
|
</xsl:template>
|
|
|
|
|
2007-09-19 21:58:22 +02:00
|
|
|
|
2007-09-20 21:44:21 +02:00
|
|
|
<!-- sect1info -->
|
|
|
|
<xsl:template match="sect1info">
|
|
|
|
<!-- Build phase (base file name) to be used for PM -->
|
|
|
|
<xsl:param name="phase" select="foo"/>
|
|
|
|
<xsl:text>
PKG_PHASE=</xsl:text>
|
|
|
|
<xsl:value-of select="$phase"/>
|
|
|
|
<!-- Package name -->
|
|
|
|
<xsl:apply-templates select="productname"/>
|
|
|
|
<!-- Package version -->
|
|
|
|
<xsl:apply-templates select="productnumber"/>
|
|
|
|
<!-- Tarball name -->
|
|
|
|
<xsl:apply-templates select="address"/>
|
|
|
|
<xsl:text>

</xsl:text>
|
|
|
|
</xsl:template>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- productname -->
|
|
|
|
<xsl:template match="productname">
|
|
|
|
<xsl:text>
PACKAGE=</xsl:text>
|
|
|
|
<xsl:apply-templates/>
|
|
|
|
</xsl:template>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- productnumber -->
|
|
|
|
<xsl:template match="productnumber">
|
|
|
|
<xsl:text>
VERSION=</xsl:text>
|
|
|
|
<xsl:apply-templates/>
|
|
|
|
</xsl:template>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- address -->
|
|
|
|
<xsl:template match="address">
|
|
|
|
<xsl:text>
TARBALL=</xsl:text>
|
|
|
|
<xsl:call-template name="package_name">
|
|
|
|
<xsl:with-param name="url">
|
|
|
|
<xsl:apply-templates/>
|
|
|
|
</xsl:with-param>
|
|
|
|
</xsl:call-template>
|
|
|
|
<xsl:apply-templates select="otheraddr" mode="tarball"/>
|
|
|
|
</xsl:template>
|
2007-09-19 21:58:22 +02:00
|
|
|
|
|
|
|
|
2007-09-20 21:44:21 +02:00
|
|
|
<!-- otheraddr -->
|
|
|
|
<xsl:template match="otheraddr"/>
|
|
|
|
<xsl:template match="otheraddr" mode="tarball">
|
|
|
|
<xsl:text>
TARBALL_</xsl:text>
|
|
|
|
<xsl:value-of select="position()"/>
|
|
|
|
<xsl:text>=</xsl:text>
|
|
|
|
<xsl:call-template name="package_name">
|
|
|
|
<xsl:with-param name="url" select="."/>
|
|
|
|
</xsl:call-template>
|
|
|
|
</xsl:template>
|
2007-09-19 21:58:22 +02:00
|
|
|
|
|
|
|
|
2007-09-20 21:44:21 +02:00
|
|
|
<!-- screen -->
|
2006-03-07 21:02:53 +01:00
|
|
|
<xsl:template match="screen">
|
2006-03-09 23:23:47 +01:00
|
|
|
<xsl:if test="child::* = userinput and not(@role = 'nodump')">
|
2007-09-22 13:33:56 +02:00
|
|
|
<xsl:call-template name="top_screen_build_fixes"/>
|
|
|
|
<xsl:apply-templates/>
|
|
|
|
<xsl:call-template name="bottom_screen_build_fixes"/>
|
|
|
|
<xsl:text>
</xsl:text>
|
2006-03-07 21:02:53 +01:00
|
|
|
</xsl:if>
|
|
|
|
</xsl:template>
|
|
|
|
|
2007-09-20 21:44:21 +02:00
|
|
|
|
2007-09-22 13:33:56 +02:00
|
|
|
<!-- userinput @remap='pre' -->
|
|
|
|
<xsl:template match="userinput[@remap='pre']">
|
|
|
|
<xsl:apply-templates select="." mode="pre"/>
|
|
|
|
</xsl:template>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- userinput @remap='configure' -->
|
|
|
|
<xsl:template match="userinput[@remap='configure']">
|
|
|
|
<xsl:apply-templates select="." mode="configure"/>
|
|
|
|
</xsl:template>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- userinput @remap='make' -->
|
|
|
|
<xsl:template match="userinput[@remap='make']">
|
|
|
|
<xsl:apply-templates select="." mode="make"/>
|
|
|
|
</xsl:template>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- userinput @remap='test' -->
|
|
|
|
<xsl:template match="userinput[@remap='test']">
|
|
|
|
<xsl:apply-templates select="." mode="test"/>
|
|
|
|
</xsl:template>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- userinput @remap='install' -->
|
|
|
|
<xsl:template match="userinput[@remap='install']">
|
|
|
|
<xsl:apply-templates select="." mode="install"/>
|
|
|
|
</xsl:template>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- userinput @remap='adjust' -->
|
|
|
|
<xsl:template match="userinput[@remap='adjust']">
|
|
|
|
<xsl:apply-templates select="." mode="adjust"/>
|
|
|
|
</xsl:template>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- userinput @remap='locale-test' -->
|
|
|
|
<xsl:template match="userinput[@remap='locale-test']">
|
|
|
|
<xsl:apply-templates select="." mode="locale-test"/>
|
|
|
|
</xsl:template>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- userinput @remap='locale-full' -->
|
|
|
|
<xsl:template match="userinput[@remap='locale-full']">
|
|
|
|
<xsl:apply-templates select="." mode="locale-full"/>
|
|
|
|
</xsl:template>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<!-- userinput without @remap -->
|
2007-09-20 21:44:21 +02:00
|
|
|
<xsl:template match="userinput">
|
2006-03-07 21:02:53 +01:00
|
|
|
<xsl:choose>
|
2007-09-22 13:33:56 +02:00
|
|
|
<xsl:when test="ancestor::sect2[@role='configuration']">
|
|
|
|
<xsl:apply-templates select="." mode="configuration_section"/>
|
2007-09-21 23:47:06 +02:00
|
|
|
</xsl:when>
|
|
|
|
<xsl:otherwise>
|
2007-09-22 13:33:56 +02:00
|
|
|
<xsl:apply-templates select="." mode="no_remap"/>
|
2007-09-21 23:47:06 +02:00
|
|
|
</xsl:otherwise>
|
|
|
|
</xsl:choose>
|
|
|
|
</xsl:template>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- replaceable -->
|
|
|
|
<xsl:template match="replaceable">
|
|
|
|
<xsl:choose>
|
|
|
|
<!-- Configuring the Time Zone -->
|
|
|
|
<xsl:when test="ancestor::sect2[@id='conf-glibc'] and string()='<xxx>'">
|
|
|
|
<xsl:value-of select="$timezone"/>
|
|
|
|
</xsl:when>
|
|
|
|
<!-- Set paper size for Groff build -->
|
|
|
|
<xsl:when test="string()='<paper_size>'">
|
|
|
|
<xsl:value-of select="$page"/>
|
|
|
|
</xsl:when>
|
|
|
|
<!-- LANG setting in /etc/profile -->
|
|
|
|
<xsl:when test="contains(string(),'<ll>_<CC>')">
|
|
|
|
<xsl:value-of select="$lang"/>
|
|
|
|
</xsl:when>
|
|
|
|
<xsl:otherwise>
|
|
|
|
<xsl:text>**EDITME</xsl:text>
|
|
|
|
<xsl:apply-templates/>
|
|
|
|
<xsl:text>EDITME**</xsl:text>
|
|
|
|
</xsl:otherwise>
|
|
|
|
</xsl:choose>
|
|
|
|
</xsl:template>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- ######################################################################## -->
|
|
|
|
|
|
|
|
<!-- ############################# MODE TEMPLATES ########################### -->
|
|
|
|
|
|
|
|
|
|
|
|
<!-- mode test -->
|
|
|
|
<xsl:template match="userinput" mode="test">
|
|
|
|
<xsl:choose>
|
|
|
|
<!-- No testsuites run on level 0 -->
|
|
|
|
<xsl:when test="$testsuite = '0'"/>
|
|
|
|
<!-- On level 1, only final system toolchain testsuites are run -->
|
|
|
|
<xsl:when test="$testsuite = '1' and
|
|
|
|
not(ancestor::sect1[@id='ch-system-gcc']) and
|
|
|
|
not(ancestor::sect1[@id='ch-system-glibc']) and
|
|
|
|
not(ancestor::sect1[@id='ch-system-binutils'])"/>
|
|
|
|
<!-- On level 2, temp tools testsuites are not run -->
|
|
|
|
<xsl:when test="$testsuite = '2' and
|
|
|
|
ancestor::chapter[@id='chapter-temporary-tools']"/>
|
|
|
|
<!-- Start testsuites command fixes -->
|
|
|
|
<xsl:otherwise>
|
2006-06-04 19:59:02 +02:00
|
|
|
<xsl:choose>
|
2007-09-21 23:47:06 +02:00
|
|
|
<!-- Final system Glibc -->
|
|
|
|
<xsl:when test="contains(string(),'glibc-check-log')">
|
|
|
|
<xsl:value-of select="substring-before(string(),'2>&1')"/>
|
|
|
|
<xsl:text>>> $TEST_LOG 2>&1 || true</xsl:text>
|
|
|
|
</xsl:when>
|
|
|
|
<!-- Module-Init-Tools -->
|
|
|
|
<xsl:when test="ancestor::sect1[@id='ch-system-module-init-tools']
|
|
|
|
and contains(string(),'make check')">
|
|
|
|
<xsl:value-of select="substring-before(string(),' check')"/>
|
|
|
|
<xsl:if test="$bomb-testsuite = 'n'">
|
|
|
|
<xsl:text> -k</xsl:text>
|
2006-06-04 19:59:02 +02:00
|
|
|
</xsl:if>
|
2007-09-21 23:47:06 +02:00
|
|
|
<xsl:text> check >> $TEST_LOG 2>&1</xsl:text>
|
|
|
|
<xsl:if test="$bomb-testsuite = 'n'">
|
|
|
|
<xsl:text> || true</xsl:text>
|
2007-09-19 18:50:48 +02:00
|
|
|
</xsl:if>
|
2007-09-21 23:47:06 +02:00
|
|
|
<xsl:value-of select="substring-after(string(),' check')"/>
|
2006-03-09 23:23:47 +01:00
|
|
|
</xsl:when>
|
2007-09-21 23:47:06 +02:00
|
|
|
<!-- If the book uses -k, the testsuite should never bomb -->
|
|
|
|
<xsl:when test="contains(string(),'make -k ')">
|
|
|
|
<xsl:apply-templates select="." mode="default"/>
|
|
|
|
<xsl:text> >> $TEST_LOG 2>&1 || true</xsl:text>
|
2006-03-09 23:23:47 +01:00
|
|
|
</xsl:when>
|
2007-09-21 23:47:06 +02:00
|
|
|
<!-- Extra commands in Binutils and GCC -->
|
|
|
|
<xsl:when test="contains(string(),'test_summary') or
|
|
|
|
contains(string(),'expect -c')">
|
|
|
|
<xsl:apply-templates select="." mode="default"/>
|
|
|
|
<xsl:text> >> $TEST_LOG</xsl:text>
|
2006-03-09 23:23:47 +01:00
|
|
|
</xsl:when>
|
2007-09-21 23:47:06 +02:00
|
|
|
<!-- Remaining extra testsuite commads that don't need be hacked -->
|
|
|
|
<xsl:when test="not(contains(string(),'make '))">
|
|
|
|
<xsl:apply-templates select="." mode="default"/>
|
|
|
|
</xsl:when>
|
|
|
|
<!-- Normal testsites run -->
|
2007-09-19 18:50:48 +02:00
|
|
|
<xsl:otherwise>
|
|
|
|
<xsl:choose>
|
2007-09-21 23:47:06 +02:00
|
|
|
<!-- No bomb on failures -->
|
2007-09-19 18:50:48 +02:00
|
|
|
<xsl:when test="$bomb-testsuite = 'n'">
|
2007-09-21 23:47:06 +02:00
|
|
|
<xsl:value-of select="substring-before(string(),'make ')"/>
|
|
|
|
<xsl:text>make -k </xsl:text>
|
|
|
|
<xsl:value-of select="substring-after(string(),'make ')"/>
|
|
|
|
<xsl:text> >> $TEST_LOG 2>&1 || true</xsl:text>
|
2007-09-19 18:50:48 +02:00
|
|
|
</xsl:when>
|
2007-09-21 23:47:06 +02:00
|
|
|
<!-- Bomb at the first failure -->
|
2007-09-19 18:50:48 +02:00
|
|
|
<xsl:otherwise>
|
2007-09-21 23:47:06 +02:00
|
|
|
<xsl:apply-templates select="." mode="default"/>
|
2007-09-19 18:50:48 +02:00
|
|
|
<xsl:text> >> $TEST_LOG 2>&1</xsl:text>
|
|
|
|
</xsl:otherwise>
|
|
|
|
</xsl:choose>
|
|
|
|
</xsl:otherwise>
|
|
|
|
</xsl:choose>
|
2006-03-07 21:02:53 +01:00
|
|
|
</xsl:otherwise>
|
|
|
|
</xsl:choose>
|
|
|
|
</xsl:template>
|
|
|
|
|
2007-09-21 23:47:06 +02:00
|
|
|
|
|
|
|
<!-- mode pre -->
|
|
|
|
<xsl:template match="userinput" mode="pre">
|
|
|
|
<xsl:apply-templates select="." mode="default"/>
|
|
|
|
</xsl:template>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- mode configure -->
|
|
|
|
<xsl:template match="userinput" mode="configure">
|
|
|
|
<xsl:apply-templates select="." mode="default"/>
|
|
|
|
</xsl:template>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- mode make -->
|
|
|
|
<xsl:template match="userinput" mode="make">
|
|
|
|
<xsl:apply-templates select="." mode="default"/>
|
|
|
|
</xsl:template>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- mode install -->
|
|
|
|
<xsl:template match="userinput" mode="install">
|
|
|
|
<xsl:apply-templates select="." mode="default"/>
|
|
|
|
</xsl:template>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- mode adjust -->
|
|
|
|
<xsl:template match="userinput" mode="adjust">
|
|
|
|
<xsl:apply-templates select="." mode="default"/>
|
|
|
|
</xsl:template>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- mode locale-test -->
|
|
|
|
<xsl:template match="userinput" mode="locale-test">
|
|
|
|
<xsl:apply-templates select="." mode="default"/>
|
|
|
|
</xsl:template>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- mode locale-full -->
|
|
|
|
<xsl:template match="userinput" mode="locale-full">
|
|
|
|
<xsl:apply-templates select="." mode="default"/>
|
2006-03-07 21:02:53 +01:00
|
|
|
</xsl:template>
|
|
|
|
|
2007-09-22 13:33:56 +02:00
|
|
|
|
|
|
|
<!-- mode configuration_section -->
|
|
|
|
<xsl:template match="userinput" mode="configuration_section">
|
|
|
|
<xsl:apply-templates select="." mode="default"/>
|
|
|
|
</xsl:template>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- mode no_remap -->
|
|
|
|
<xsl:template match="userinput" mode="no_remap">
|
|
|
|
<xsl:apply-templates select="." mode="default"/>
|
|
|
|
</xsl:template>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- mode default -->
|
|
|
|
<xsl:template match="userinput" mode="default">
|
|
|
|
<xsl:apply-templates/>
|
|
|
|
</xsl:template>
|
|
|
|
|
2006-03-07 21:02:53 +01:00
|
|
|
</xsl:stylesheet>
|