2006-04-06 21:35:22 +02:00
|
|
|
<?xml version="1.0"?>
|
|
|
|
<!DOCTYPE xsl:stylesheet [
|
|
|
|
<!ENTITY % general-entities SYSTEM "FAKEDIR/general.ent">
|
|
|
|
%general-entities;
|
|
|
|
]>
|
|
|
|
|
|
|
|
<!-- $Id$ -->
|
|
|
|
|
|
|
|
<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 HLFS books. -->
|
|
|
|
|
|
|
|
<!-- What libc implentation must be used? -->
|
|
|
|
<xsl:param name="model" select="glibc"/>
|
|
|
|
|
|
|
|
<!-- Is the host kernel using grsecurity? -->
|
2006-08-16 19:42:54 +02:00
|
|
|
<xsl:param name="grsecurity_host" select="n"/>
|
2006-04-06 21:35:22 +02:00
|
|
|
|
|
|
|
<!-- Run test suites?
|
|
|
|
0 = none
|
|
|
|
1 = only chapter06 Glibc, GCC and Binutils testsuites
|
|
|
|
2 = all chapter06 testsuites
|
2006-08-05 16:51:11 +02:00
|
|
|
3 = alias to 2
|
|
|
|
-->
|
2006-04-06 21:35:22 +02:00
|
|
|
<xsl:param name="testsuite" select="1"/>
|
|
|
|
|
2006-08-05 16:51:11 +02:00
|
|
|
<!-- Bomb on test suites failures?
|
2006-08-16 19:42:54 +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 16:51:11 +02:00
|
|
|
-->
|
2006-08-16 19:42:54 +02:00
|
|
|
<xsl:param name="bomb-testsuite" select="n"/>
|
2006-08-05 16:51:11 +02:00
|
|
|
|
2006-04-06 21:35:22 +02:00
|
|
|
<!-- Time zone -->
|
2006-06-04 19:56:01 +02:00
|
|
|
<xsl:param name="timezone" select="GMT"/>
|
2006-04-06 21:35:22 +02:00
|
|
|
|
|
|
|
<!-- Page size -->
|
|
|
|
<xsl:param name="page" select="letter"/>
|
|
|
|
|
|
|
|
<!-- Locale settings -->
|
2006-06-04 19:56:01 +02:00
|
|
|
<xsl:param name="lang" select="C"/>
|
|
|
|
<xsl:param name="lc_all" select="C"/>
|
2006-04-06 21:35:22 +02:00
|
|
|
|
|
|
|
<xsl:template match="/">
|
|
|
|
<xsl:apply-templates select="//sect1"/>
|
|
|
|
</xsl:template>
|
|
|
|
|
|
|
|
<xsl:template match="sect1">
|
|
|
|
<xsl:if test="(../@id='chapter-temporary-tools' or
|
|
|
|
../@id='chapter-building-system' or
|
|
|
|
../@id='chapter-bootable') and
|
|
|
|
((@condition=$model or not(@condition)) and
|
|
|
|
count(descendant::screen/userinput) > 0 and
|
|
|
|
count(descendant::screen/userinput) >
|
|
|
|
count(descendant::screen[@role='nodump']))">
|
|
|
|
<!-- The dirs names -->
|
|
|
|
<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)"/>
|
|
|
|
<!-- The file names -->
|
|
|
|
<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')"/>
|
|
|
|
<!-- The build order -->
|
|
|
|
<xsl:variable name="position" select="position()"/>
|
|
|
|
<xsl:variable name="order">
|
|
|
|
<xsl:choose>
|
|
|
|
<xsl:when test="string-length($position) = 1">
|
|
|
|
<xsl:text>00</xsl:text>
|
|
|
|
<xsl:value-of select="$position"/>
|
|
|
|
</xsl:when>
|
|
|
|
<xsl:when test="string-length($position) = 2">
|
|
|
|
<xsl:text>0</xsl:text>
|
|
|
|
<xsl:value-of select="$position"/>
|
|
|
|
</xsl:when>
|
|
|
|
<xsl:otherwise>
|
|
|
|
<xsl:value-of select="$position"/>
|
|
|
|
</xsl:otherwise>
|
|
|
|
</xsl:choose>
|
|
|
|
</xsl:variable>
|
|
|
|
<!-- Creating dirs and files -->
|
|
|
|
<exsl:document href="{$dirname}/{$order}-{$filename}" method="text">
|
2006-12-04 13:49:35 +01:00
|
|
|
<xsl:text>#!/bin/bash
set +h
</xsl:text>
|
|
|
|
<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>
|
2006-04-06 21:35:22 +02:00
|
|
|
<xsl:if test="(sect2[@role='installation'] and
|
2006-07-30 12:17:29 +02:00
|
|
|
not(@id='bootable-kernel'))">
|
2006-04-06 21:35:22 +02:00
|
|
|
<xsl:text>cd $PKGDIR
</xsl:text>
|
2006-12-08 11:34:17 +01:00
|
|
|
<xsl:if test="@id='ch-system-uclibc'">
|
2006-04-06 21:35:22 +02:00
|
|
|
<xsl:text>pushd ../; tar -xvf gettext-&gettext-version;.*; popd; 
</xsl:text>
|
|
|
|
</xsl:if>
|
2006-07-30 12:17:29 +02:00
|
|
|
|
|
|
|
<!-- NEW toolchain format, from inside ./sources dir unpack binutils and gcc -->
|
|
|
|
<xsl:if test="@id='ch-tools-embryo-toolchain' or
|
|
|
|
@id='ch-tools-cocoon-toolchain' or
|
|
|
|
@id='ch-system-butterfly-toolchain'">
|
|
|
|
<xsl:text>tar -xvf gcc-core-&gcc-version;.*; 
</xsl:text>
|
|
|
|
<xsl:text>tar -xvf binutils-&binutils-version;.*; 
</xsl:text>
|
2006-04-06 21:35:22 +02:00
|
|
|
</xsl:if>
|
2006-11-15 21:21:16 +01:00
|
|
|
<xsl:if test="@id='ch-tools-cocoon-toolchain' or
|
|
|
|
@id='ch-system-butterfly-toolchain'">
|
|
|
|
<xsl:text>tar -xvf gcc-g++-&gcc-version;.*; 
</xsl:text>
|
|
|
|
</xsl:if>
|
2006-07-30 12:17:29 +02:00
|
|
|
<!-- ONLY butterfly has a testsuite -->
|
2006-07-30 16:39:19 +02:00
|
|
|
<xsl:if test="@id='ch-system-butterfly-toolchain' and $testsuite != '0'">
|
2006-07-30 12:17:29 +02:00
|
|
|
<xsl:text>tar -xvf gcc-testsuite-&gcc-version;.*; 
</xsl:text>
|
2006-04-06 21:35:22 +02:00
|
|
|
</xsl:if>
|
2006-07-30 12:17:29 +02:00
|
|
|
<!-- END new toolchain format -->
|
|
|
|
|
2006-04-06 21:35:22 +02:00
|
|
|
<xsl:if test="@id='bootable-bootscripts'">
|
|
|
|
<xsl:text>pushd ../; tar -xvf blfs-bootscripts-&blfs-bootscripts-version;.* ; popd; 
</xsl:text>
|
|
|
|
</xsl:if>
|
|
|
|
</xsl:if>
|
|
|
|
<xsl:apply-templates select=".//para/userinput | .//screen"/>
|
|
|
|
<xsl:text>exit</xsl:text>
|
|
|
|
</exsl:document>
|
|
|
|
</xsl:if>
|
|
|
|
</xsl:template>
|
|
|
|
|
|
|
|
<xsl:template match="screen">
|
|
|
|
<xsl:if test="(@condition=$model or not(@condition)) and
|
|
|
|
child::* = userinput and not(@role = 'nodump')">
|
|
|
|
<xsl:apply-templates select="userinput" mode="screen"/>
|
|
|
|
</xsl:if>
|
|
|
|
</xsl:template>
|
|
|
|
|
|
|
|
<xsl:template match="para/userinput">
|
|
|
|
<xsl:if test="(contains(string(),'test') or
|
2006-07-30 12:17:29 +02:00
|
|
|
contains(string(),'check')) and
|
|
|
|
($testsuite = '2' or $testsuite = '3')">
|
2006-08-05 16:51:11 +02:00
|
|
|
<xsl:choose>
|
2006-08-16 19:42:54 +02:00
|
|
|
<xsl:when test="$bomb-testsuite = 'n'">
|
2006-08-05 16:51:11 +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>
|
|
|
|
</xsl:when>
|
|
|
|
<xsl:otherwise>
|
|
|
|
<xsl:apply-templates/>
|
2006-08-15 16:51:39 +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 16:51:11 +02:00
|
|
|
</xsl:otherwise>
|
|
|
|
</xsl:choose>
|
2006-04-06 21:35:22 +02:00
|
|
|
</xsl:if>
|
|
|
|
</xsl:template>
|
|
|
|
|
|
|
|
<xsl:template match="userinput" mode="screen">
|
|
|
|
<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>
|
|
|
|
<!-- grsecurity kernel in the host? -->
|
|
|
|
<xsl:when test="ancestor::sect1[@id='ch-system-kernfs'] and
|
|
|
|
contains(string(),'sysctl')
|
2006-08-16 19:42:54 +02:00
|
|
|
and $grsecurity_host ='n'"/>
|
2006-04-06 21:35:22 +02:00
|
|
|
<!-- Setting $LC_ALL and $LANG for /etc/profile -->
|
|
|
|
<xsl:when test="ancestor::sect1[@id='bootable-profile'] and
|
|
|
|
contains(string(),'export LANG=')">
|
|
|
|
<xsl:value-of select="substring-before(string(),'export LC_ALL=')"/>
|
|
|
|
<xsl:text>export LC_ALL=</xsl:text>
|
|
|
|
<xsl:value-of select="$lc_all"/>
|
|
|
|
<xsl:text>
export LANG=</xsl:text>
|
|
|
|
<xsl:value-of select="$lang"/>
|
|
|
|
<xsl:text>
export INPUTRC</xsl:text>
|
|
|
|
<xsl:value-of select="substring-after(string(),'INPUTRC')"/>
|
|
|
|
<xsl:text>
</xsl:text>
|
|
|
|
</xsl:when>
|
|
|
|
<!-- Fixing bootscripts installation -->
|
|
|
|
<xsl:when test="ancestor::sect1[@id='bootable-bootscripts'] and
|
|
|
|
string() = 'make install'">
|
|
|
|
<xsl:text>make install
</xsl:text>
|
|
|
|
<xsl:text>cd ../blfs-bootscripts-&blfs-bootscripts-version;
</xsl:text>
|
|
|
|
</xsl:when>
|
2006-09-11 20:47:51 +02:00
|
|
|
<!-- Compile the keymap into the kernel has been dissabled -->
|
|
|
|
<xsl:when test="contains(string(),'defkeymap')"/>
|
2006-04-06 21:35:22 +02:00
|
|
|
<!-- Copying the kernel config file -->
|
|
|
|
<xsl:when test="string() = 'make mrproper'">
|
|
|
|
<xsl:text>make mrproper
</xsl:text>
|
|
|
|
<xsl:text>cp -v /sources/kernel-config .config
</xsl:text>
|
|
|
|
</xsl:when>
|
|
|
|
<!-- No interactive commands are needed if the .config file is the proper one -->
|
|
|
|
<xsl:when test="string() = 'make menuconfig'"/>
|
|
|
|
<!-- For uClibc we need to cd to the Gettext package -->
|
|
|
|
<xsl:when test="contains(string(),'cd gettext-runtime/')">
|
|
|
|
<xsl:text>cd ../gettext-*/gettext-runtime</xsl:text>
|
|
|
|
<xsl:value-of select="substring-after(string(),'gettext-runtime')"/>
|
|
|
|
<xsl:text>
</xsl:text>
|
|
|
|
</xsl:when>
|
|
|
|
<!-- The Coreutils and Module-Init-Tools test suites are optional -->
|
2006-06-04 19:56:01 +02:00
|
|
|
<xsl:when test="(ancestor::sect1[@id='ch-system-coreutils'] or
|
2006-04-06 21:35:22 +02:00
|
|
|
ancestor::sect1[@id='ch-system-module-init-tools']) and
|
|
|
|
(contains(string(),'check') or
|
|
|
|
contains(string(),'distclean') or
|
2006-06-04 19:56:01 +02:00
|
|
|
contains(string(),'dummy'))">
|
|
|
|
<xsl:choose>
|
|
|
|
<xsl:when test="$testsuite = '0' or $testsuite = '1'"/>
|
|
|
|
<xsl:otherwise>
|
2006-08-05 16:51:11 +02:00
|
|
|
<xsl:if test="not(contains(string(),'check'))">
|
|
|
|
<xsl:apply-templates/>
|
|
|
|
<xsl:text>
</xsl:text>
|
|
|
|
</xsl:if>
|
2006-06-04 19:56:01 +02:00
|
|
|
<xsl:if test="contains(string(),'check')">
|
2006-08-05 16:51:11 +02:00
|
|
|
<xsl:choose>
|
2006-08-16 19:42:54 +02:00
|
|
|
<xsl:when test="$bomb-testsuite = 'n'">
|
2006-08-05 16:51:11 +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:51:39 +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 16:51:11 +02:00
|
|
|
</xsl:otherwise>
|
|
|
|
</xsl:choose>
|
2006-06-04 19:56:01 +02:00
|
|
|
</xsl:if>
|
|
|
|
</xsl:otherwise>
|
|
|
|
</xsl:choose>
|
|
|
|
</xsl:when>
|
2006-12-08 13:03:08 +01:00
|
|
|
<!-- Fixing butterfly toolchain and other packages test suites run -->
|
2006-12-08 12:56:07 +01:00
|
|
|
<xsl:when test="string() = 'make -k check'
|
|
|
|
or string() = 'make check'
|
|
|
|
or string() = 'make tests'">
|
2006-04-06 21:35:22 +02:00
|
|
|
<xsl:choose>
|
2006-12-08 12:56:07 +01:00
|
|
|
<xsl:when test="(ancestor::sect1[@id='ch-system-butterfly-toolchain']
|
|
|
|
and $testsuite != '0') or
|
|
|
|
$testsuite = '2' or $testsuite = '3'">
|
2006-08-05 16:51:11 +02:00
|
|
|
<xsl:choose>
|
2006-08-16 19:42:54 +02:00
|
|
|
<xsl:when test="$bomb-testsuite = 'n'">
|
2006-12-08 12:56:07 +01:00
|
|
|
<xsl:text>make -k check >> $TEST_LOG 2>&1 || true
</xsl:text>
|
2006-08-05 16:51:11 +02:00
|
|
|
</xsl:when>
|
|
|
|
<xsl:otherwise>
|
2006-12-08 12:56:07 +01:00
|
|
|
<xsl:apply-templates/>
|
2006-08-17 19:26:06 +02:00
|
|
|
<xsl:text> >> $TEST_LOG 2>&1</xsl:text>
|
2006-08-15 16:51:39 +02:00
|
|
|
<xsl:if test="contains(string(),' -k ')">
|
|
|
|
<xsl:text> || true</xsl:text>
|
|
|
|
</xsl:if>
|
2006-08-17 19:26:06 +02:00
|
|
|
<xsl:text>
</xsl:text>
|
2006-08-05 16:51:11 +02:00
|
|
|
</xsl:otherwise>
|
|
|
|
</xsl:choose>
|
2006-04-06 21:35:22 +02:00
|
|
|
</xsl:when>
|
|
|
|
</xsl:choose>
|
|
|
|
</xsl:when>
|
2006-07-30 12:17:29 +02:00
|
|
|
<!-- Fixing Glbc test suite -->
|
|
|
|
<xsl:when test="contains(string(),'glibc-check-log')">
|
2006-04-06 21:35:22 +02:00
|
|
|
<xsl:choose>
|
|
|
|
<xsl:when test="$testsuite != '0'">
|
2006-12-08 12:56:07 +01:00
|
|
|
<xsl:value-of select="substring-before(string(),'2>&1')"/>
|
|
|
|
<xsl:text>>> $TEST_LOG 2>&1 || true
</xsl:text>
|
2006-04-06 21:35:22 +02:00
|
|
|
</xsl:when>
|
|
|
|
</xsl:choose>
|
|
|
|
</xsl:when>
|
2006-12-08 12:56:07 +01:00
|
|
|
<!-- Don't stop on strip run -->
|
2006-12-08 13:03:08 +01:00
|
|
|
<xsl:when test="contains(string(),'strip ')">
|
2006-04-06 21:35:22 +02:00
|
|
|
<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>
|
|
|
|
|
2006-07-30 12:17:29 +02:00
|
|
|
<xsl:template match="literal">
|
|
|
|
<xsl:if test="@condition=$model or not(@condition)">
|
|
|
|
<xsl:apply-templates/>
|
|
|
|
</xsl:if>
|
|
|
|
</xsl:template>
|
|
|
|
|
2006-04-06 21:35:22 +02:00
|
|
|
<xsl:template match="replaceable">
|
|
|
|
<xsl:choose>
|
|
|
|
<xsl:when test="ancestor::sect1[@id='ch-system-glibc'] or
|
|
|
|
ancestor::sect1[@id='ch-system-uclibc']">
|
|
|
|
<xsl:value-of select="$timezone"/>
|
|
|
|
</xsl:when>
|
|
|
|
<xsl:when test="ancestor::sect1[@id='ch-system-groff']">
|
|
|
|
<xsl:value-of select="$page"/>
|
|
|
|
</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>
|