[877cc6a] | 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? -->
|
---|
[401f81e] | 20 | <xsl:param name="grsecurity_host" select="n"/>
|
---|
[877cc6a] | 21 |
|
---|
| 22 | <!-- Run test suites?
|
---|
| 23 | 0 = none
|
---|
| 24 | 1 = only chapter06 Glibc, GCC and Binutils testsuites
|
---|
| 25 | 2 = all chapter06 testsuites
|
---|
[28f4756] | 26 | 3 = alias to 2
|
---|
| 27 | -->
|
---|
[877cc6a] | 28 | <xsl:param name="testsuite" select="1"/>
|
---|
| 29 |
|
---|
[28f4756] | 30 | <!-- Bomb on test suites failures?
|
---|
[401f81e] | 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
|
---|
[28f4756] | 33 | -->
|
---|
[401f81e] | 34 | <xsl:param name="bomb-testsuite" select="n"/>
|
---|
[28f4756] | 35 |
|
---|
[877cc6a] | 36 | <!-- Time zone -->
|
---|
[a229600] | 37 | <xsl:param name="timezone" select="GMT"/>
|
---|
[877cc6a] | 38 |
|
---|
| 39 | <!-- Page size -->
|
---|
| 40 | <xsl:param name="page" select="letter"/>
|
---|
| 41 |
|
---|
| 42 | <!-- Locale settings -->
|
---|
[a229600] | 43 | <xsl:param name="lang" select="C"/>
|
---|
| 44 | <xsl:param name="lc_all" select="C"/>
|
---|
[877cc6a] | 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) > 0 and
|
---|
| 56 | count(descendant::screen/userinput) >
|
---|
| 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">
|
---|
[5f4982d] | 86 | <xsl:text>#!/bin/bash
set +h
</xsl:text>
|
---|
| 87 | <xsl:if test="not(@id='ch-tools-stripping') and
|
---|
| 88 | not(@id='ch-system-strippingagain')">
|
---|
| 89 | <xsl:text>set -e
</xsl:text>
|
---|
| 90 | </xsl:if>
|
---|
| 91 | <xsl:text>
</xsl:text>
|
---|
[877cc6a] | 92 | <xsl:if test="(sect2[@role='installation'] and
|
---|
[d81c640] | 93 | not(@id='bootable-kernel'))">
|
---|
[877cc6a] | 94 | <xsl:text>cd $PKGDIR
</xsl:text>
|
---|
[5e83595] | 95 | <xsl:if test="@id='ch-system-uclibc'">
|
---|
[877cc6a] | 96 | <xsl:text>pushd ../; tar -xvf gettext-&gettext-version;.*; popd; 
</xsl:text>
|
---|
| 97 | </xsl:if>
|
---|
[d81c640] | 98 |
|
---|
[4d15d7f] | 99 | <!-- SVN toolchain format, from inside ./sources dir unpack binutils and gcc -->
|
---|
[d81c640] | 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;.*; 
</xsl:text>
|
---|
| 104 | <xsl:text>tar -xvf binutils-&binutils-version;.*; 
</xsl:text>
|
---|
[877cc6a] | 105 | </xsl:if>
|
---|
[30d1215] | 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;.*; 
</xsl:text>
|
---|
| 109 | </xsl:if>
|
---|
[d81c640] | 110 | <!-- ONLY butterfly has a testsuite -->
|
---|
[b2489fb] | 111 | <xsl:if test="@id='ch-system-butterfly-toolchain' and $testsuite != '0'">
|
---|
[d81c640] | 112 | <xsl:text>tar -xvf gcc-testsuite-&gcc-version;.*; 
</xsl:text>
|
---|
[877cc6a] | 113 | </xsl:if>
|
---|
[4d15d7f] | 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; 
</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; 
</xsl:text>
|
---|
| 122 | </xsl:if>
|
---|
| 123 | <!-- END 2.4-branch toolchain -->
|
---|
[d81c640] | 124 |
|
---|
[877cc6a] | 125 | <xsl:if test="@id='bootable-bootscripts'">
|
---|
| 126 | <xsl:text>pushd ../; tar -xvf blfs-bootscripts-&blfs-bootscripts-version;.* ; popd; 
</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
|
---|
[d81c640] | 144 | contains(string(),'check')) and
|
---|
| 145 | ($testsuite = '2' or $testsuite = '3')">
|
---|
[28f4756] | 146 | <xsl:choose>
|
---|
[401f81e] | 147 | <xsl:when test="$bomb-testsuite = 'n'">
|
---|
[28f4756] | 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> >> $TEST_LOG 2>&1 || true
</xsl:text>
|
---|
| 152 | </xsl:when>
|
---|
| 153 | <xsl:otherwise>
|
---|
| 154 | <xsl:apply-templates/>
|
---|
[a1f1969] | 155 | <xsl:text> >> $TEST_LOG 2>&1</xsl:text>
|
---|
| 156 | <xsl:if test="contains(string(),' -k ')">
|
---|
| 157 | <xsl:text> || true</xsl:text>
|
---|
| 158 | </xsl:if>
|
---|
| 159 | <xsl:text>
</xsl:text>
|
---|
[28f4756] | 160 | </xsl:otherwise>
|
---|
| 161 | </xsl:choose>
|
---|
[877cc6a] | 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>
</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')
|
---|
[401f81e] | 177 | and $grsecurity_host ='n'"/>
|
---|
[37002ae] | 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')"/>
|
---|
[4d15d7f] | 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>
</xsl:text>
|
---|
| 188 | </xsl:when>
|
---|
[877cc6a] | 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>
export LANG=</xsl:text>
|
---|
| 196 | <xsl:value-of select="$lang"/>
|
---|
| 197 | <xsl:text>
export INPUTRC</xsl:text>
|
---|
| 198 | <xsl:value-of select="substring-after(string(),'INPUTRC')"/>
|
---|
| 199 | <xsl:text>
</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
</xsl:text>
|
---|
| 205 | <xsl:text>cd ../blfs-bootscripts-&blfs-bootscripts-version;
</xsl:text>
|
---|
| 206 | </xsl:when>
|
---|
[f4caf9c] | 207 | <!-- Compile the keymap into the kernel has been dissabled -->
|
---|
| 208 | <xsl:when test="contains(string(),'defkeymap')"/>
|
---|
[877cc6a] | 209 | <!-- Copying the kernel config file -->
|
---|
| 210 | <xsl:when test="string() = 'make mrproper'">
|
---|
| 211 | <xsl:text>make mrproper
</xsl:text>
|
---|
| 212 | <xsl:text>cp -v /sources/kernel-config .config
</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>
</xsl:text>
|
---|
| 221 | </xsl:when>
|
---|
| 222 | <!-- The Coreutils and Module-Init-Tools test suites are optional -->
|
---|
[a229600] | 223 | <xsl:when test="(ancestor::sect1[@id='ch-system-coreutils'] or
|
---|
[877cc6a] | 224 | ancestor::sect1[@id='ch-system-module-init-tools']) and
|
---|
| 225 | (contains(string(),'check') or
|
---|
| 226 | contains(string(),'distclean') or
|
---|
[a229600] | 227 | contains(string(),'dummy'))">
|
---|
| 228 | <xsl:choose>
|
---|
| 229 | <xsl:when test="$testsuite = '0' or $testsuite = '1'"/>
|
---|
| 230 | <xsl:otherwise>
|
---|
[28f4756] | 231 | <xsl:if test="not(contains(string(),'check'))">
|
---|
| 232 | <xsl:apply-templates/>
|
---|
| 233 | <xsl:text>
</xsl:text>
|
---|
| 234 | </xsl:if>
|
---|
[a229600] | 235 | <xsl:if test="contains(string(),'check')">
|
---|
[28f4756] | 236 | <xsl:choose>
|
---|
[401f81e] | 237 | <xsl:when test="$bomb-testsuite = 'n'">
|
---|
[28f4756] | 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> >> $TEST_LOG 2>&1 || true
</xsl:text>
|
---|
| 242 | </xsl:when>
|
---|
| 243 | <xsl:otherwise>
|
---|
| 244 | <xsl:apply-templates/>
|
---|
[a1f1969] | 245 | <xsl:text> >> $TEST_LOG 2>&1</xsl:text>
|
---|
| 246 | <xsl:if test="contains(string(),' -k ')">
|
---|
| 247 | <xsl:text> || true</xsl:text>
|
---|
| 248 | </xsl:if>
|
---|
| 249 | <xsl:text>
</xsl:text>
|
---|
[28f4756] | 250 | </xsl:otherwise>
|
---|
| 251 | </xsl:choose>
|
---|
[a229600] | 252 | </xsl:if>
|
---|
| 253 | </xsl:otherwise>
|
---|
| 254 | </xsl:choose>
|
---|
| 255 | </xsl:when>
|
---|
[4d15d7f] | 256 | <!-- Fixing butterfly and 2.4-branch toolchain plus other packages test suites run -->
|
---|
[ff43bb8] | 257 | <xsl:when test="string() = 'make -k check'
|
---|
| 258 | or string() = 'make check'
|
---|
| 259 | or string() = 'make tests'">
|
---|
[877cc6a] | 260 | <xsl:choose>
|
---|
[4d15d7f] | 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'])
|
---|
[ff43bb8] | 264 | and $testsuite != '0') or
|
---|
| 265 | $testsuite = '2' or $testsuite = '3'">
|
---|
[28f4756] | 266 | <xsl:choose>
|
---|
[401f81e] | 267 | <xsl:when test="$bomb-testsuite = 'n'">
|
---|
[ff43bb8] | 268 | <xsl:text>make -k check >> $TEST_LOG 2>&1 || true
</xsl:text>
|
---|
[28f4756] | 269 | </xsl:when>
|
---|
| 270 | <xsl:otherwise>
|
---|
[ff43bb8] | 271 | <xsl:apply-templates/>
|
---|
[f98695c] | 272 | <xsl:text> >> $TEST_LOG 2>&1</xsl:text>
|
---|
[a1f1969] | 273 | <xsl:if test="contains(string(),' -k ')">
|
---|
| 274 | <xsl:text> || true</xsl:text>
|
---|
| 275 | </xsl:if>
|
---|
[f98695c] | 276 | <xsl:text>
</xsl:text>
|
---|
[28f4756] | 277 | </xsl:otherwise>
|
---|
| 278 | </xsl:choose>
|
---|
[877cc6a] | 279 | </xsl:when>
|
---|
| 280 | </xsl:choose>
|
---|
| 281 | </xsl:when>
|
---|
[d81c640] | 282 | <!-- Fixing Glbc test suite -->
|
---|
| 283 | <xsl:when test="contains(string(),'glibc-check-log')">
|
---|
[877cc6a] | 284 | <xsl:choose>
|
---|
| 285 | <xsl:when test="$testsuite != '0'">
|
---|
[ff43bb8] | 286 | <xsl:value-of select="substring-before(string(),'2>&1')"/>
|
---|
| 287 | <xsl:text>>> $TEST_LOG 2>&1 || true
</xsl:text>
|
---|
[877cc6a] | 288 | </xsl:when>
|
---|
| 289 | </xsl:choose>
|
---|
| 290 | </xsl:when>
|
---|
[ff43bb8] | 291 | <!-- Don't stop on strip run -->
|
---|
[85077e7] | 292 | <xsl:when test="contains(string(),'strip ')">
|
---|
[877cc6a] | 293 | <xsl:apply-templates/>
|
---|
| 294 | <xsl:text> || true
</xsl:text>
|
---|
| 295 | </xsl:when>
|
---|
| 296 | <!-- The rest of commands -->
|
---|
| 297 | <xsl:otherwise>
|
---|
| 298 | <xsl:apply-templates/>
|
---|
| 299 | <xsl:text>
</xsl:text>
|
---|
| 300 | </xsl:otherwise>
|
---|
| 301 | </xsl:choose>
|
---|
| 302 | </xsl:template>
|
---|
| 303 |
|
---|
[d81c640] | 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 |
|
---|
[877cc6a] | 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>
|
---|