source: LFS/lfs.xsl@ bcfb3bf

2.3 2.4 ablfs ablfs-more legacy new_features trunk
Last change on this file since bcfb3bf was bcfb3bf, checked in by George Boudreau <georgeb@…>, 16 years ago

LFS changed to linux headers install, change xsl to handle. 6.3 and svn only

  • Property mode set to 100644
File size: 12.7 KB
Line 
1<?xml version="1.0"?>
2<!DOCTYPE xsl:stylesheet [
3 <!ENTITY % general-entities SYSTEM "FAKEDIR/general.ent">
4 %general-entities;
5]>
6
7<!-- $Id$ -->
8
9<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
10 xmlns:exsl="http://exslt.org/common"
11 extension-element-prefixes="exsl"
12 version="1.0">
13
14<!-- XSLT stylesheet to create shell scripts from LFS books. -->
15
16 <!-- Run test suites?
17 0 = none
18 1 = only chapter06 Glibc, GCC and Binutils testsuites
19 2 = all chapter06 testsuites
20 3 = all chapter05 and chapter06 testsuites
21 -->
22 <xsl:param name="testsuite" select="1"/>
23
24 <!-- Bomb on test suites failures?
25 n = no, I want to build the full system and review the logs
26 y = yes, bomb at the first test suite failure to can review the build dir
27 -->
28 <xsl:param name="bomb-testsuite" select="n"/>
29
30 <!-- Install vim-lang package? -->
31 <xsl:param name="vim-lang" select="y"/>
32
33 <!-- Time zone -->
34 <xsl:param name="timezone" select="GMT"/>
35
36 <!-- Page size -->
37 <xsl:param name="page" select="letter"/>
38
39 <!-- Locale settings -->
40 <xsl:param name="lang" select="C"/>
41
42 <xsl:template match="/">
43 <xsl:apply-templates select="//sect1"/>
44 </xsl:template>
45
46 <xsl:template match="sect1">
47 <xsl:if test="(../@id='chapter-temporary-tools' or
48 ../@id='chapter-building-system' or
49 ../@id='chapter-bootscripts' or
50 ../@id='chapter-bootable') and
51 count(descendant::screen/userinput) &gt; 0 and
52 count(descendant::screen/userinput) &gt;
53 count(descendant::screen[@role='nodump'])">
54 <!-- The dirs names -->
55 <xsl:variable name="pi-dir" select="../processing-instruction('dbhtml')"/>
56 <xsl:variable name="pi-dir-value" select="substring-after($pi-dir,'dir=')"/>
57 <xsl:variable name="quote-dir" select="substring($pi-dir-value,1,1)"/>
58 <xsl:variable name="dirname" select="substring-before(substring($pi-dir-value,2),$quote-dir)"/>
59 <!-- The file names -->
60 <xsl:variable name="pi-file" select="processing-instruction('dbhtml')"/>
61 <xsl:variable name="pi-file-value" select="substring-after($pi-file,'filename=')"/>
62 <xsl:variable name="filename" select="substring-before(substring($pi-file-value,2),'.html')"/>
63 <!-- The build order -->
64 <xsl:variable name="position" select="position()"/>
65 <xsl:variable name="order">
66 <xsl:choose>
67 <xsl:when test="string-length($position) = 1">
68 <xsl:text>00</xsl:text>
69 <xsl:value-of select="$position"/>
70 </xsl:when>
71 <xsl:when test="string-length($position) = 2">
72 <xsl:text>0</xsl:text>
73 <xsl:value-of select="$position"/>
74 </xsl:when>
75 <xsl:otherwise>
76 <xsl:value-of select="$position"/>
77 </xsl:otherwise>
78 </xsl:choose>
79 </xsl:variable>
80 <!-- Creating dirs and files -->
81 <exsl:document href="{$dirname}/{$order}-{$filename}" method="text">
82 <xsl:choose>
83 <xsl:when test="@id='ch-system-creatingdirs' or
84 @id='ch-system-createfiles' or
85 @id='ch-system-strippingagain'">
86 <xsl:text>#!/tools/bin/bash&#xA;set +h&#xA;</xsl:text>
87 </xsl:when>
88 <xsl:otherwise>
89 <xsl:text>#!/bin/bash&#xA;set +h&#xA;</xsl:text>
90 </xsl:otherwise>
91 </xsl:choose>
92 <xsl:if test="not(@id='ch-tools-stripping') and
93 not(@id='ch-system-strippingagain')">
94 <xsl:text>set -e&#xA;</xsl:text>
95 </xsl:if>
96 <xsl:text>&#xA;</xsl:text>
97 <xsl:if test="sect2[@role='installation']">
98 <xsl:text>cd $PKGDIR&#xA;</xsl:text>
99 <xsl:if test="@id='ch-system-vim' and $vim-lang = 'y'">
100 <xsl:text>tar -xvf ../vim-&vim-version;-lang.* --strip-components=1&#xA;</xsl:text>
101 </xsl:if>
102 </xsl:if>
103 <xsl:apply-templates select=".//screen"/>
104 <xsl:if test="$testsuite='3' and @id='ch-tools-glibc'">
105 <xsl:copy-of select="//userinput[@remap='locale-test']"/>
106 <xsl:text>&#xA;</xsl:text>
107 </xsl:if>
108 <xsl:if test="not(@id='ch-system-chroot') and
109 not(@id='ch-system-revisedchroot')">
110 <xsl:text>echo -e "\n\nTotalseconds: $SECONDS\n"&#xA;</xsl:text>
111 </xsl:if>
112 <xsl:text>exit&#xA;</xsl:text>
113 </exsl:document>
114 </xsl:if>
115 </xsl:template>
116
117 <xsl:template match="screen">
118 <xsl:if test="child::* = userinput and not(@role = 'nodump')">
119 <xsl:apply-templates select="userinput" mode="screen"/>
120 </xsl:if>
121 </xsl:template>
122
123 <xsl:template match="userinput" mode="screen">
124 <xsl:choose>
125 <!-- Estandarized package formats -->
126 <xsl:when test="contains(string(),'tar.gz')">
127 <xsl:value-of select="substring-before(string(),'tar.gz')"/>
128 <xsl:text>tar.*</xsl:text>
129 <xsl:value-of select="substring-after(string(),'tar.gz')"/>
130 <xsl:text>&#xA;</xsl:text>
131 </xsl:when>
132 <!-- Avoiding a race condition in a patch -->
133 <xsl:when test="contains(string(),'debian_fixes')">
134 <xsl:value-of select="substring-before(string(),'patch')"/>
135 <xsl:text>patch -Z</xsl:text>
136 <xsl:value-of select="substring-after(string(),'patch')"/>
137 <xsl:text>&#xA;</xsl:text>
138 </xsl:when>
139 <!-- Fix Udev reinstallation after a build failure -->
140 <xsl:when test="contains(string(),'firmware,udev')">
141 <xsl:text>if [[ ! -d /lib/udev/devices ]] ; then&#xA;</xsl:text>
142 <xsl:apply-templates/>
143 <xsl:text>&#xA;fi&#xA;</xsl:text>
144 </xsl:when>
145 <!-- Copying the kernel config file -->
146 <xsl:when test="string() = 'make mrproper'">
147 <xsl:text>make mrproper&#xA;</xsl:text>
148 <xsl:if test="ancestor::sect1[@id='ch-bootable-kernel']">
149 <xsl:text>cp -v ../kernel-config .config&#xA;</xsl:text>
150 </xsl:if>
151 </xsl:when>
152 <!-- The Bash, Coreutils, and Module-Init-Tools test suites are optional -->
153 <xsl:when test="(ancestor::sect1[@id='ch-system-coreutils'] or
154 ancestor::sect1[@id='ch-system-bash'] or
155 ancestor::sect1[@id='ch-system-module-init-tools'])
156 and @remap = 'test'">
157 <xsl:choose>
158 <xsl:when test="$testsuite = '0' or $testsuite = '1'"/>
159 <xsl:otherwise>
160 <xsl:if test="not(contains(string(),'check')) and
161 not(contains(string(),'make tests'))">
162 <xsl:apply-templates/>
163 <xsl:text>&#xA;</xsl:text>
164 </xsl:if>
165 <!-- Coreutils and Module-Init-Tools -->
166 <xsl:if test="contains(string(),'check')">
167 <xsl:choose>
168 <xsl:when test="$bomb-testsuite = 'n'">
169 <xsl:value-of select="substring-before(string(),'check')"/>
170 <xsl:text>-k check</xsl:text>
171 <xsl:value-of select="substring-after(string(),'check')"/>
172 <xsl:text> &gt;&gt; $TEST_LOG 2&gt;&amp;1 || true&#xA;</xsl:text>
173 </xsl:when>
174 <xsl:otherwise>
175 <xsl:apply-templates/>
176 <xsl:text> &gt;&gt; $TEST_LOG 2&gt;&amp;1</xsl:text>
177 <xsl:if test="contains(string(),' -k ')">
178 <xsl:text> || true</xsl:text>
179 </xsl:if>
180 <xsl:text>&#xA;</xsl:text>
181 </xsl:otherwise>
182 </xsl:choose>
183 </xsl:if>
184 <!-- Bash -->
185 <xsl:if test="contains(string(),'make tests')">
186 <xsl:choose>
187 <xsl:when test="$bomb-testsuite = 'n'">
188 <xsl:value-of select="substring-before(string(),'tests')"/>
189 <xsl:text>-k tests</xsl:text>
190 <xsl:value-of select="substring-after(string(),'tests')"/>
191 <xsl:text> &gt;&gt; $TEST_LOG 2&gt;&amp;1 || true&#xA;</xsl:text>
192 </xsl:when>
193 <xsl:otherwise>
194 <xsl:apply-templates/>
195 <xsl:text> &gt;&gt; $TEST_LOG 2&gt;&amp;1</xsl:text>
196 <xsl:if test="contains(string(),' -k ')">
197 <xsl:text> || true</xsl:text>
198 </xsl:if>
199 <xsl:text>&#xA;</xsl:text>
200 </xsl:otherwise>
201 </xsl:choose>
202 </xsl:if>
203 </xsl:otherwise>
204 </xsl:choose>
205 </xsl:when>
206 <!-- Fixing toolchain test suites run -->
207 <xsl:when test="(string() = 'make check' or
208 string() = 'make -k check') and
209 (ancestor::sect1[@id='ch-system-gcc'] or
210 ancestor::sect1[@id='ch-system-glibc'] or
211 ancestor::sect1[@id='ch-system-binutils'] or
212 ancestor::sect1[@id='ch-tools-gcc-pass2'])">
213 <xsl:choose>
214 <xsl:when test="(($testsuite = '1' or $testsuite = '2') and
215 ancestor::chapter[@id='chapter-building-system']) or
216 $testsuite = '3'">
217 <xsl:choose>
218 <xsl:when test="$bomb-testsuite = 'n'">
219 <xsl:text>make -k check &gt;&gt; $TEST_LOG 2&gt;&amp;1 || true&#xA;</xsl:text>
220 </xsl:when>
221 <xsl:otherwise>
222 <xsl:apply-templates/>
223 <xsl:text> &gt;&gt; $TEST_LOG 2&gt;&amp;1</xsl:text>
224 <xsl:if test="contains(string(),' -k ')">
225 <xsl:text> || true</xsl:text>
226 </xsl:if>
227 <xsl:text>&#xA;</xsl:text>
228 </xsl:otherwise>
229 </xsl:choose>
230 </xsl:when>
231 </xsl:choose>
232 </xsl:when>
233 <xsl:when test="contains(string(),'glibc-check-log')">
234 <xsl:choose>
235 <xsl:when test="$testsuite != '0'">
236 <xsl:value-of select="substring-before(string(),'2&gt;&amp;1')"/>
237 <xsl:text>&gt;&gt; $TEST_LOG 2&gt;&amp;1 || true&#xA;</xsl:text>
238 </xsl:when>
239 </xsl:choose>
240 </xsl:when>
241 <xsl:when test="contains(string(),'test_summary') or
242 contains(string(),'expect -c')">
243 <xsl:choose>
244 <xsl:when test="(($testsuite = '1' or $testsuite = '2') and
245 ancestor::chapter[@id='chapter-building-system']) or
246 $testsuite = '3'">
247 <xsl:apply-templates/>
248 <xsl:text> &gt;&gt; $TEST_LOG&#xA;</xsl:text>
249 </xsl:when>
250 </xsl:choose>
251 </xsl:when>
252 <!-- The rest of testsuites -->
253 <xsl:when test="@remap = 'test'">
254 <xsl:choose>
255 <xsl:when test="$testsuite = '0'"/>
256 <xsl:when test="$testsuite = '1' and
257 not(ancestor::sect1[@id='ch-system-gcc']) and
258 not(ancestor::sect1[@id='ch-system-glibc']) and
259 not(ancestor::sect1[@id='ch-system-binutils'])"/>
260 <xsl:when test="$testsuite = '2' and
261 ancestor::chapter[@id='chapter-temporary-tools']"/>
262 <xsl:otherwise>
263 <xsl:choose>
264 <xsl:when test="$bomb-testsuite = 'n'">
265 <xsl:value-of select="substring-before(string(),'make')"/>
266 <xsl:text>make -k</xsl:text>
267 <xsl:value-of select="substring-after(string(),'make')"/>
268 <xsl:text> &gt;&gt; $TEST_LOG 2&gt;&amp;1 || true&#xA;</xsl:text>
269 </xsl:when>
270 <xsl:otherwise>
271 <xsl:apply-templates/>
272 <xsl:text> &gt;&gt; $TEST_LOG 2&gt;&amp;1</xsl:text>
273 <xsl:if test="contains(string(),' -k ')">
274 <xsl:text> || true</xsl:text>
275 </xsl:if>
276 <xsl:text>&#xA;</xsl:text>
277 </xsl:otherwise>
278 </xsl:choose>
279 </xsl:otherwise>
280 </xsl:choose>
281 </xsl:when>
282 <!-- Don't stop on strip run -->
283 <xsl:when test="contains(string(),'strip ')">
284 <xsl:apply-templates/>
285 <xsl:text> || true&#xA;</xsl:text>
286 </xsl:when>
287 <!-- The rest of commands -->
288 <xsl:otherwise>
289 <xsl:apply-templates/>
290 <xsl:text>&#xA;</xsl:text>
291 </xsl:otherwise>
292 </xsl:choose>
293 </xsl:template>
294
295 <xsl:template match="replaceable">
296 <xsl:choose>
297 <xsl:when test="ancestor::sect1[@id='ch-system-glibc']">
298 <xsl:value-of select="$timezone"/>
299 </xsl:when>
300 <xsl:when test="ancestor::sect1[@id='ch-system-groff']">
301 <xsl:value-of select="$page"/>
302 </xsl:when>
303 <xsl:when test="contains(string(.),'&lt;ll&gt;_&lt;CC&gt;')">
304 <xsl:value-of select="$lang"/>
305 </xsl:when>
306 <xsl:otherwise>
307 <xsl:text>**EDITME</xsl:text>
308 <xsl:apply-templates/>
309 <xsl:text>EDITME**</xsl:text>
310 </xsl:otherwise>
311 </xsl:choose>
312 </xsl:template>
313
314</xsl:stylesheet>
Note: See TracBrowser for help on using the repository browser.