2006-03-07 21:02:53 +01:00
|
|
|
<?xml version="1.0"?>
|
|
|
|
<!DOCTYPE xsl:stylesheet [
|
|
|
|
<!ENTITY % general-entities SYSTEM "FAKEDIR/general.ent">
|
|
|
|
%general-entities;
|
|
|
|
]>
|
|
|
|
|
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'">
|
|
|
|
<xsl:text>tar -xvf ../vim-&vim-version;-lang.* --strip-components=1
</xsl:text>
|
|
|
|
</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
|
|
|
|
|
|
|
<!-- 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"/>
|
|
|
|
<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-20 21:44:21 +02:00
|
|
|
<xsl:apply-templates select="userinput"/>
|
2006-03-07 21:02:53 +01:00
|
|
|
</xsl:if>
|
|
|
|
</xsl:template>
|
|
|
|
|
2007-09-20 21:44:21 +02:00
|
|
|
|
|
|
|
<!-- userinput -->
|
|
|
|
<xsl:template match="userinput">
|
2006-03-07 21:02:53 +01:00
|
|
|
<xsl:choose>
|
|
|
|
<!-- Estandarized package formats -->
|
|
|
|
<xsl:when test="contains(string(),'tar.gz')">
|
|
|
|
<xsl:value-of select="substring-before(string(),'tar.gz')"/>
|
|
|
|
<xsl:text>tar.*</xsl:text>
|
|
|
|
<xsl:value-of select="substring-after(string(),'tar.gz')"/>
|
|
|
|
<xsl:text>
</xsl:text>
|
|
|
|
</xsl:when>
|
|
|
|
<!-- Avoiding a race condition in a patch -->
|
|
|
|
<xsl:when test="contains(string(),'debian_fixes')">
|
|
|
|
<xsl:value-of select="substring-before(string(),'patch')"/>
|
|
|
|
<xsl:text>patch -Z</xsl:text>
|
|
|
|
<xsl:value-of select="substring-after(string(),'patch')"/>
|
|
|
|
<xsl:text>
</xsl:text>
|
|
|
|
</xsl:when>
|
2006-08-06 12:17:24 +02:00
|
|
|
<!-- Fix Udev reinstallation after a build failure -->
|
|
|
|
<xsl:when test="contains(string(),'firmware,udev')">
|
|
|
|
<xsl:text>if [[ ! -d /lib/udev/devices ]] ; then
</xsl:text>
|
|
|
|
<xsl:apply-templates/>
|
|
|
|
<xsl:text>
fi
</xsl:text>
|
|
|
|
</xsl:when>
|
2006-03-11 00:45:36 +01:00
|
|
|
<!-- Setting $LANG for /etc/profile -->
|
2006-03-11 00:35:41 +01:00
|
|
|
<xsl:when test="ancestor::sect1[@id='ch-scripts-profile'] and
|
|
|
|
contains(string(),'export LANG=')">
|
|
|
|
<xsl:value-of select="substring-before(string(),'export LANG=')"/>
|
2006-03-19 14:40:28 +01:00
|
|
|
<xsl:text>export LANG=</xsl:text>
|
|
|
|
<xsl:value-of select="$lang"/>
|
2006-04-14 11:59:38 +02:00
|
|
|
<xsl:value-of select="substring-after(string(),'modifiers>')"/>
|
2006-03-11 00:35:41 +01:00
|
|
|
<xsl:text>
</xsl:text>
|
|
|
|
</xsl:when>
|
2006-03-07 21:02:53 +01:00
|
|
|
<!-- Copying the kernel config file -->
|
|
|
|
<xsl:when test="string() = 'make mrproper'">
|
|
|
|
<xsl:text>make mrproper
</xsl:text>
|
|
|
|
<xsl:text>cp -v ../kernel-config .config
</xsl:text>
|
|
|
|
</xsl:when>
|
2007-09-19 18:50:48 +02:00
|
|
|
<!-- The Bash, Coreutils, and Module-Init-Tools test suites are optional -->
|
2006-06-04 19:59:02 +02:00
|
|
|
<xsl:when test="(ancestor::sect1[@id='ch-system-coreutils'] or
|
2007-09-19 18:50:48 +02:00
|
|
|
ancestor::sect1[@id='ch-system-bash'] or
|
|
|
|
ancestor::sect1[@id='ch-system-module-init-tools'])
|
|
|
|
and @remap = 'test'">
|
2006-06-04 19:59:02 +02:00
|
|
|
<xsl:choose>
|
|
|
|
<xsl:when test="$testsuite = '0' or $testsuite = '1'"/>
|
|
|
|
<xsl:otherwise>
|
2007-09-19 18:50:48 +02:00
|
|
|
<xsl:if test="not(contains(string(),'check')) and
|
|
|
|
not(contains(string(),'make tests'))">
|
2006-08-05 17:42:52 +02:00
|
|
|
<xsl:apply-templates/>
|
|
|
|
<xsl:text>
</xsl:text>
|
|
|
|
</xsl:if>
|
2007-09-19 18:50:48 +02:00
|
|
|
<!-- Coreutils and Module-Init-Tools -->
|
2006-06-04 19:59:02 +02:00
|
|
|
<xsl:if test="contains(string(),'check')">
|
2006-08-05 17:42:52 +02:00
|
|
|
<xsl:choose>
|
2006-08-12 21:59:11 +02:00
|
|
|
<xsl:when test="$bomb-testsuite = 'n'">
|
2006-08-05 17:42:52 +02:00
|
|
|
<xsl:value-of select="substring-before(string(),'check')"/>
|
|
|
|
<xsl:text>-k check</xsl:text>
|
|
|
|
<xsl:value-of select="substring-after(string(),'check')"/>
|
|
|
|
<xsl:text> >> $TEST_LOG 2>&1 || true
</xsl:text>
|
|
|
|
</xsl:when>
|
|
|
|
<xsl:otherwise>
|
|
|
|
<xsl:apply-templates/>
|
2006-08-15 16:53:12 +02:00
|
|
|
<xsl:text> >> $TEST_LOG 2>&1</xsl:text>
|
|
|
|
<xsl:if test="contains(string(),' -k ')">
|
|
|
|
<xsl:text> || true</xsl:text>
|
|
|
|
</xsl:if>
|
|
|
|
<xsl:text>
</xsl:text>
|
2006-08-05 17:42:52 +02:00
|
|
|
</xsl:otherwise>
|
|
|
|
</xsl:choose>
|
2006-06-04 19:59:02 +02:00
|
|
|
</xsl:if>
|
2007-09-19 18:50:48 +02:00
|
|
|
<!-- Bash -->
|
|
|
|
<xsl:if test="contains(string(),'make tests')">
|
|
|
|
<xsl:choose>
|
|
|
|
<xsl:when test="$bomb-testsuite = 'n'">
|
|
|
|
<xsl:value-of select="substring-before(string(),'tests')"/>
|
|
|
|
<xsl:text>-k tests</xsl:text>
|
|
|
|
<xsl:value-of select="substring-after(string(),'tests')"/>
|
|
|
|
<xsl:text> >> $TEST_LOG 2>&1 || true
</xsl:text>
|
|
|
|
</xsl:when>
|
|
|
|
<xsl:otherwise>
|
|
|
|
<xsl:apply-templates/>
|
|
|
|
<xsl:text> >> $TEST_LOG 2>&1</xsl:text>
|
|
|
|
<xsl:if test="contains(string(),' -k ')">
|
|
|
|
<xsl:text> || true</xsl:text>
|
|
|
|
</xsl:if>
|
|
|
|
<xsl:text>
</xsl:text>
|
|
|
|
</xsl:otherwise>
|
|
|
|
</xsl:choose>
|
|
|
|
</xsl:if>
|
2006-06-04 19:59:02 +02:00
|
|
|
</xsl:otherwise>
|
|
|
|
</xsl:choose>
|
|
|
|
</xsl:when>
|
2006-03-07 21:02:53 +01:00
|
|
|
<!-- Fixing toolchain test suites run -->
|
2007-09-19 18:50:48 +02:00
|
|
|
<xsl:when test="(string() = 'make check' or
|
|
|
|
string() = 'make -k check') and
|
|
|
|
(ancestor::sect1[@id='ch-system-gcc'] or
|
|
|
|
ancestor::sect1[@id='ch-system-glibc'] or
|
|
|
|
ancestor::sect1[@id='ch-system-binutils'] or
|
|
|
|
ancestor::sect1[@id='ch-tools-gcc-pass2'])">
|
2006-03-07 21:02:53 +01:00
|
|
|
<xsl:choose>
|
2006-03-09 23:23:47 +01:00
|
|
|
<xsl:when test="(($testsuite = '1' or $testsuite = '2') and
|
|
|
|
ancestor::chapter[@id='chapter-building-system']) or
|
|
|
|
$testsuite = '3'">
|
2006-08-05 17:42:52 +02:00
|
|
|
<xsl:choose>
|
2006-08-12 21:59:11 +02:00
|
|
|
<xsl:when test="$bomb-testsuite = 'n'">
|
2006-08-05 17:42:52 +02:00
|
|
|
<xsl:text>make -k check >> $TEST_LOG 2>&1 || true
</xsl:text>
|
|
|
|
</xsl:when>
|
|
|
|
<xsl:otherwise>
|
|
|
|
<xsl:apply-templates/>
|
2006-08-15 16:53:12 +02:00
|
|
|
<xsl:text> >> $TEST_LOG 2>&1</xsl:text>
|
|
|
|
<xsl:if test="contains(string(),' -k ')">
|
|
|
|
<xsl:text> || true</xsl:text>
|
|
|
|
</xsl:if>
|
|
|
|
<xsl:text>
</xsl:text>
|
2006-08-05 17:42:52 +02:00
|
|
|
</xsl:otherwise>
|
|
|
|
</xsl:choose>
|
2006-03-09 23:23:47 +01:00
|
|
|
</xsl:when>
|
2006-03-07 21:02:53 +01:00
|
|
|
</xsl:choose>
|
|
|
|
</xsl:when>
|
|
|
|
<xsl:when test="contains(string(),'glibc-check-log')">
|
|
|
|
<xsl:choose>
|
2006-03-09 23:23:47 +01:00
|
|
|
<xsl:when test="$testsuite != '0'">
|
2006-06-04 19:59:02 +02:00
|
|
|
<xsl:value-of select="substring-before(string(),'2>&1')"/>
|
|
|
|
<xsl:text>>> $TEST_LOG 2>&1 || true
</xsl:text>
|
2006-03-09 23:23:47 +01:00
|
|
|
</xsl:when>
|
2006-03-07 21:02:53 +01:00
|
|
|
</xsl:choose>
|
|
|
|
</xsl:when>
|
|
|
|
<xsl:when test="contains(string(),'test_summary') or
|
|
|
|
contains(string(),'expect -c')">
|
|
|
|
<xsl:choose>
|
2006-03-09 23:23:47 +01:00
|
|
|
<xsl:when test="(($testsuite = '1' or $testsuite = '2') and
|
|
|
|
ancestor::chapter[@id='chapter-building-system']) or
|
|
|
|
$testsuite = '3'">
|
2006-03-07 21:02:53 +01:00
|
|
|
<xsl:apply-templates/>
|
2006-08-05 17:42:52 +02:00
|
|
|
<xsl:text> >> $TEST_LOG
</xsl:text>
|
2006-03-09 23:23:47 +01:00
|
|
|
</xsl:when>
|
2006-03-07 21:02:53 +01:00
|
|
|
</xsl:choose>
|
|
|
|
</xsl:when>
|
2007-09-19 18:50:48 +02:00
|
|
|
<!-- The rest of testsuites -->
|
|
|
|
<xsl:when test="@remap = 'test'">
|
|
|
|
<xsl:choose>
|
|
|
|
<xsl:when test="$testsuite = '0'"/>
|
|
|
|
<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'])"/>
|
|
|
|
<xsl:when test="$testsuite = '2' and
|
|
|
|
ancestor::chapter[@id='chapter-temporary-tools']"/>
|
|
|
|
<xsl:otherwise>
|
|
|
|
<xsl:choose>
|
|
|
|
<xsl:when test="$bomb-testsuite = 'n'">
|
|
|
|
<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>
|
|
|
|
</xsl:when>
|
|
|
|
<xsl:otherwise>
|
|
|
|
<xsl:apply-templates/>
|
|
|
|
<xsl:text> >> $TEST_LOG 2>&1</xsl:text>
|
|
|
|
<xsl:if test="contains(string(),' -k ')">
|
|
|
|
<xsl:text> || true</xsl:text>
|
|
|
|
</xsl:if>
|
|
|
|
<xsl:text>
</xsl:text>
|
|
|
|
</xsl:otherwise>
|
|
|
|
</xsl:choose>
|
|
|
|
</xsl:otherwise>
|
|
|
|
</xsl:choose>
|
|
|
|
</xsl:when>
|
2006-03-07 21:02:53 +01:00
|
|
|
<!-- Don't stop on strip run -->
|
|
|
|
<xsl:when test="contains(string(),'strip ')">
|
|
|
|
<xsl:apply-templates/>
|
|
|
|
<xsl:text> || true
</xsl:text>
|
|
|
|
</xsl:when>
|
|
|
|
<!-- The rest of commands -->
|
|
|
|
<xsl:otherwise>
|
|
|
|
<xsl:apply-templates/>
|
|
|
|
<xsl:text>
</xsl:text>
|
|
|
|
</xsl:otherwise>
|
|
|
|
</xsl:choose>
|
|
|
|
</xsl:template>
|
|
|
|
|
|
|
|
<xsl:template match="replaceable">
|
|
|
|
<xsl:choose>
|
|
|
|
<xsl:when test="ancestor::sect1[@id='ch-system-glibc']">
|
2006-03-19 13:44:32 +01:00
|
|
|
<xsl:value-of select="$timezone"/>
|
2006-03-07 21:02:53 +01:00
|
|
|
</xsl:when>
|
|
|
|
<xsl:when test="ancestor::sect1[@id='ch-system-groff']">
|
2006-03-19 13:44:32 +01:00
|
|
|
<xsl:value-of select="$page"/>
|
2006-03-07 21:02:53 +01:00
|
|
|
</xsl:when>
|
|
|
|
<xsl:otherwise>
|
|
|
|
<xsl:text>**EDITME</xsl:text>
|
|
|
|
<xsl:apply-templates/>
|
|
|
|
<xsl:text>EDITME**</xsl:text>
|
|
|
|
</xsl:otherwise>
|
|
|
|
</xsl:choose>
|
|
|
|
</xsl:template>
|
|
|
|
|
|
|
|
</xsl:stylesheet>
|