source: HLFS/hlfs.xsl@ b7ea8ff

2.3 2.3.x 2.4 ablfs ablfs-more legacy new_features trunk
Last change on this file since b7ea8ff was 37002ae, checked in by Manuel Canales Esparcia <manuel@…>, 17 years ago

HLFS: Fixed MAKEDEV download.
Solved /dev/console and /dev/null issue.
Removed a hardcoded script number.

  • Property mode set to 100644
File size: 13.5 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 HLFS books. -->
15
16 <!-- What libc implentation must be used? -->
17 <xsl:param name="model" select="glibc"/>
18
19 <!-- Is the host kernel using grsecurity? -->
20 <xsl:param name="grsecurity_host" select="n"/>
21
22 <!-- Run test suites?
23 0 = none
24 1 = only chapter06 Glibc, GCC and Binutils testsuites
25 2 = all chapter06 testsuites
26 3 = alias to 2
27 -->
28 <xsl:param name="testsuite" select="1"/>
29
30 <!-- Bomb on test suites failures?
31 n = no, I want to build the full system and review the logs
32 y = yes, bomb at the first test suite failure to can review the build dir
33 -->
34 <xsl:param name="bomb-testsuite" select="n"/>
35
36 <!-- Time zone -->
37 <xsl:param name="timezone" select="GMT"/>
38
39 <!-- Page size -->
40 <xsl:param name="page" select="letter"/>
41
42 <!-- Locale settings -->
43 <xsl:param name="lang" select="C"/>
44 <xsl:param name="lc_all" select="C"/>
45
46 <xsl:template match="/">
47 <xsl:apply-templates select="//sect1"/>
48 </xsl:template>
49
50 <xsl:template match="sect1">
51 <xsl:if test="(../@id='chapter-temporary-tools' or
52 ../@id='chapter-building-system' or
53 ../@id='chapter-bootable') and
54 ((@condition=$model or not(@condition)) and
55 count(descendant::screen/userinput) &gt; 0 and
56 count(descendant::screen/userinput) &gt;
57 count(descendant::screen[@role='nodump']))">
58 <!-- The dirs names -->
59 <xsl:variable name="pi-dir" select="../processing-instruction('dbhtml')"/>
60 <xsl:variable name="pi-dir-value" select="substring-after($pi-dir,'dir=')"/>
61 <xsl:variable name="quote-dir" select="substring($pi-dir-value,1,1)"/>
62 <xsl:variable name="dirname" select="substring-before(substring($pi-dir-value,2),$quote-dir)"/>
63 <!-- The file names -->
64 <xsl:variable name="pi-file" select="processing-instruction('dbhtml')"/>
65 <xsl:variable name="pi-file-value" select="substring-after($pi-file,'filename=')"/>
66 <xsl:variable name="filename" select="substring-before(substring($pi-file-value,2),'.html')"/>
67 <!-- The build order -->
68 <xsl:variable name="position" select="position()"/>
69 <xsl:variable name="order">
70 <xsl:choose>
71 <xsl:when test="string-length($position) = 1">
72 <xsl:text>00</xsl:text>
73 <xsl:value-of select="$position"/>
74 </xsl:when>
75 <xsl:when test="string-length($position) = 2">
76 <xsl:text>0</xsl:text>
77 <xsl:value-of select="$position"/>
78 </xsl:when>
79 <xsl:otherwise>
80 <xsl:value-of select="$position"/>
81 </xsl:otherwise>
82 </xsl:choose>
83 </xsl:variable>
84 <!-- Creating dirs and files -->
85 <exsl:document href="{$dirname}/{$order}-{$filename}" method="text">
86 <xsl:text>#!/bin/bash&#xA;set +h&#xA;</xsl:text>
87 <xsl:if test="not(@id='ch-tools-stripping') and
88 not(@id='ch-system-strippingagain')">
89 <xsl:text>set -e&#xA;</xsl:text>
90 </xsl:if>
91 <xsl:text>&#xA;</xsl:text>
92 <xsl:if test="(sect2[@role='installation'] and
93 not(@id='bootable-kernel'))">
94 <xsl:text>cd $PKGDIR&#xA;</xsl:text>
95 <xsl:if test="@id='ch-system-uclibc'">
96 <xsl:text>pushd ../; tar -xvf gettext-&gettext-version;.*; popd; &#xA;</xsl:text>
97 </xsl:if>
98
99 <!-- SVN toolchain format, from inside ./sources dir unpack binutils and gcc -->
100 <xsl:if test="@id='ch-tools-embryo-toolchain' or
101 @id='ch-tools-cocoon-toolchain' or
102 @id='ch-system-butterfly-toolchain'">
103 <xsl:text>tar -xvf gcc-core-&gcc-version;.*; &#xA;</xsl:text>
104 <xsl:text>tar -xvf binutils-&binutils-version;.*; &#xA;</xsl:text>
105 </xsl:if>
106 <xsl:if test="@id='ch-tools-cocoon-toolchain' or
107 @id='ch-system-butterfly-toolchain'">
108 <xsl:text>tar -xvf gcc-g++-&gcc-version;.*; &#xA;</xsl:text>
109 </xsl:if>
110 <!-- ONLY butterfly has a testsuite -->
111 <xsl:if test="@id='ch-system-butterfly-toolchain' and $testsuite != '0'">
112 <xsl:text>tar -xvf gcc-testsuite-&gcc-version;.*; &#xA;</xsl:text>
113 </xsl:if>
114 <!-- END SVN toolchain format -->
115
116 <!-- 2.4-branch toolchain -->
117 <xsl:if test="@id='ch-tools-gcc-pass2' or @id='ch-system-gcc'">
118 <xsl:text>pushd ../; tar -xvf gcc-g++-&gcc-version;.*; popd; &#xA;</xsl:text>
119 </xsl:if>
120 <xsl:if test="@id='ch-system-gcc' and $testsuite != '0'">
121 <xsl:text>pushd ../; tar -xvf gcc-testsuite-&gcc-version;.*; popd; &#xA;</xsl:text>
122 </xsl:if>
123 <!-- END 2.4-branch toolchain -->
124
125 <xsl:if test="@id='bootable-bootscripts'">
126 <xsl:text>pushd ../; tar -xvf blfs-bootscripts-&blfs-bootscripts-version;.* ; popd; &#xA;</xsl:text>
127 </xsl:if>
128 </xsl:if>
129 <xsl:apply-templates select=".//para/userinput | .//screen"/>
130 <xsl:text>exit</xsl:text>
131 </exsl:document>
132 </xsl:if>
133 </xsl:template>
134
135 <xsl:template match="screen">
136 <xsl:if test="(@condition=$model or not(@condition)) and
137 child::* = userinput and not(@role = 'nodump')">
138 <xsl:apply-templates select="userinput" mode="screen"/>
139 </xsl:if>
140 </xsl:template>
141
142 <xsl:template match="para/userinput">
143 <xsl:if test="(contains(string(),'test') or
144 contains(string(),'check')) and
145 ($testsuite = '2' or $testsuite = '3')">
146 <xsl:choose>
147 <xsl:when test="$bomb-testsuite = 'n'">
148 <xsl:value-of select="substring-before(string(),'make')"/>
149 <xsl:text>make -k</xsl:text>
150 <xsl:value-of select="substring-after(string(),'make')"/>
151 <xsl:text> &gt;&gt; $TEST_LOG 2&gt;&amp;1 || true&#xA;</xsl:text>
152 </xsl:when>
153 <xsl:otherwise>
154 <xsl:apply-templates/>
155 <xsl:text> &gt;&gt; $TEST_LOG 2&gt;&amp;1</xsl:text>
156 <xsl:if test="contains(string(),' -k ')">
157 <xsl:text> || true</xsl:text>
158 </xsl:if>
159 <xsl:text>&#xA;</xsl:text>
160 </xsl:otherwise>
161 </xsl:choose>
162 </xsl:if>
163 </xsl:template>
164
165 <xsl:template match="userinput" mode="screen">
166 <xsl:choose>
167 <!-- Estandarized package formats -->
168 <xsl:when test="contains(string(),'tar.gz')">
169 <xsl:value-of select="substring-before(string(),'tar.gz')"/>
170 <xsl:text>tar.*</xsl:text>
171 <xsl:value-of select="substring-after(string(),'tar.gz')"/>
172 <xsl:text>&#xA;</xsl:text>
173 </xsl:when>
174 <!-- grsecurity kernel in the host? -->
175 <xsl:when test="ancestor::sect1[@id='ch-system-kernfs'] and
176 contains(string(),'sysctl')
177 and $grsecurity_host ='n'"/>
178 <!-- We need to have /dev/console and /dev/null availables before
179 entering to the chroot -->
180 <xsl:when test="ancestor::sect1[@id='ch-system-devices'] and
181 contains(string(),'600 /dev/console')"/>
182 <!-- Fix MAKEDEV installation in 2.4-branch -->
183 <xsl:when test="ancestor::sect1[@id='ch-system-devices'] and
184 contains(string(),'bzcat MAKEDEV')">
185 <xsl:text>bzcat /sources/</xsl:text>
186 <xsl:value-of select="substring-after(string(),'bzcat ')"/>
187 <xsl:text>&#xA;</xsl:text>
188 </xsl:when>
189 <!-- Setting $LC_ALL and $LANG for /etc/profile -->
190 <xsl:when test="ancestor::sect1[@id='bootable-profile'] and
191 contains(string(),'export LANG=')">
192 <xsl:value-of select="substring-before(string(),'export LC_ALL=')"/>
193 <xsl:text>export LC_ALL=</xsl:text>
194 <xsl:value-of select="$lc_all"/>
195 <xsl:text>&#xA;export LANG=</xsl:text>
196 <xsl:value-of select="$lang"/>
197 <xsl:text>&#xA;export INPUTRC</xsl:text>
198 <xsl:value-of select="substring-after(string(),'INPUTRC')"/>
199 <xsl:text>&#xA;</xsl:text>
200 </xsl:when>
201 <!-- Fixing bootscripts installation -->
202 <xsl:when test="ancestor::sect1[@id='bootable-bootscripts'] and
203 string() = 'make install'">
204 <xsl:text>make install&#xA;</xsl:text>
205 <xsl:text>cd ../blfs-bootscripts-&blfs-bootscripts-version;&#xA;</xsl:text>
206 </xsl:when>
207 <!-- Compile the keymap into the kernel has been dissabled -->
208 <xsl:when test="contains(string(),'defkeymap')"/>
209 <!-- Copying the kernel config file -->
210 <xsl:when test="string() = 'make mrproper'">
211 <xsl:text>make mrproper&#xA;</xsl:text>
212 <xsl:text>cp -v /sources/kernel-config .config&#xA;</xsl:text>
213 </xsl:when>
214 <!-- No interactive commands are needed if the .config file is the proper one -->
215 <xsl:when test="string() = 'make menuconfig'"/>
216 <!-- For uClibc we need to cd to the Gettext package -->
217 <xsl:when test="contains(string(),'cd gettext-runtime/')">
218 <xsl:text>cd ../gettext-*/gettext-runtime</xsl:text>
219 <xsl:value-of select="substring-after(string(),'gettext-runtime')"/>
220 <xsl:text>&#xA;</xsl:text>
221 </xsl:when>
222 <!-- The Coreutils and Module-Init-Tools test suites are optional -->
223 <xsl:when test="(ancestor::sect1[@id='ch-system-coreutils'] or
224 ancestor::sect1[@id='ch-system-module-init-tools']) and
225 (contains(string(),'check') or
226 contains(string(),'distclean') or
227 contains(string(),'dummy'))">
228 <xsl:choose>
229 <xsl:when test="$testsuite = '0' or $testsuite = '1'"/>
230 <xsl:otherwise>
231 <xsl:if test="not(contains(string(),'check'))">
232 <xsl:apply-templates/>
233 <xsl:text>&#xA;</xsl:text>
234 </xsl:if>
235 <xsl:if test="contains(string(),'check')">
236 <xsl:choose>
237 <xsl:when test="$bomb-testsuite = 'n'">
238 <xsl:value-of select="substring-before(string(),'check')"/>
239 <xsl:text>-k check</xsl:text>
240 <xsl:value-of select="substring-after(string(),'check')"/>
241 <xsl:text> &gt;&gt; $TEST_LOG 2&gt;&amp;1 || true&#xA;</xsl:text>
242 </xsl:when>
243 <xsl:otherwise>
244 <xsl:apply-templates/>
245 <xsl:text> &gt;&gt; $TEST_LOG 2&gt;&amp;1</xsl:text>
246 <xsl:if test="contains(string(),' -k ')">
247 <xsl:text> || true</xsl:text>
248 </xsl:if>
249 <xsl:text>&#xA;</xsl:text>
250 </xsl:otherwise>
251 </xsl:choose>
252 </xsl:if>
253 </xsl:otherwise>
254 </xsl:choose>
255 </xsl:when>
256 <!-- Fixing butterfly and 2.4-branch toolchain plus other packages test suites run -->
257 <xsl:when test="string() = 'make -k check'
258 or string() = 'make check'
259 or string() = 'make tests'">
260 <xsl:choose>
261 <xsl:when test="((ancestor::sect1[@id='ch-system-butterfly-toolchain']
262 or ancestor::sect1[@id='ch-system-gcc'] or
263 ancestor::sect1[@id='ch-system-binutils'])
264 and $testsuite != '0') or
265 $testsuite = '2' or $testsuite = '3'">
266 <xsl:choose>
267 <xsl:when test="$bomb-testsuite = 'n'">
268 <xsl:text>make -k check &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:when>
280 </xsl:choose>
281 </xsl:when>
282 <!-- Fixing Glbc test suite -->
283 <xsl:when test="contains(string(),'glibc-check-log')">
284 <xsl:choose>
285 <xsl:when test="$testsuite != '0'">
286 <xsl:value-of select="substring-before(string(),'2&gt;&amp;1')"/>
287 <xsl:text>&gt;&gt; $TEST_LOG 2&gt;&amp;1 || true&#xA;</xsl:text>
288 </xsl:when>
289 </xsl:choose>
290 </xsl:when>
291 <!-- Don't stop on strip run -->
292 <xsl:when test="contains(string(),'strip ')">
293 <xsl:apply-templates/>
294 <xsl:text> || true&#xA;</xsl:text>
295 </xsl:when>
296 <!-- The rest of commands -->
297 <xsl:otherwise>
298 <xsl:apply-templates/>
299 <xsl:text>&#xA;</xsl:text>
300 </xsl:otherwise>
301 </xsl:choose>
302 </xsl:template>
303
304 <xsl:template match="literal">
305 <xsl:if test="@condition=$model or not(@condition)">
306 <xsl:apply-templates/>
307 </xsl:if>
308 </xsl:template>
309
310 <xsl:template match="replaceable">
311 <xsl:choose>
312 <xsl:when test="ancestor::sect1[@id='ch-system-glibc'] or
313 ancestor::sect1[@id='ch-system-uclibc']">
314 <xsl:value-of select="$timezone"/>
315 </xsl:when>
316 <xsl:when test="ancestor::sect1[@id='ch-system-groff']">
317 <xsl:value-of select="$page"/>
318 </xsl:when>
319 <xsl:otherwise>
320 <xsl:text>**EDITME</xsl:text>
321 <xsl:apply-templates/>
322 <xsl:text>EDITME**</xsl:text>
323 </xsl:otherwise>
324 </xsl:choose>
325 </xsl:template>
326
327</xsl:stylesheet>
Note: See TracBrowser for help on using the repository browser.