source: HLFS/hlfs.xsl@ 4c32ca8

ablfs-more legacy trunk
Last change on this file since 4c32ca8 was 33a4e41, checked in by DJ Lucas <dj@…>, 3 years ago

Fix package management and put back optional stripping again for backwards compatibility.

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