[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 CLFS books. -->
|
---|
| 15 |
|
---|
| 16 | <!-- Build method used -->
|
---|
| 17 | <xsl:param name="method" select="chroot"/>
|
---|
| 18 |
|
---|
| 19 | <!-- Run test suites?
|
---|
| 20 | 0 = none
|
---|
| 21 | 1 = only Glibc, GCC and Binutils testsuites
|
---|
| 22 | 2 = all testsuites
|
---|
[28f4756] | 23 | 3 = alias to 2
|
---|
| 24 | -->
|
---|
[877cc6a] | 25 | <xsl:param name="testsuite" select="1"/>
|
---|
| 26 |
|
---|
[28f4756] | 27 | <!-- Bomb on test suites failures?
|
---|
[401f81e] | 28 | n = no, I want to build the full system and review the logs
|
---|
| 29 | y = yes, bomb at the first test suite failure to can review the build dir
|
---|
[28f4756] | 30 | -->
|
---|
[401f81e] | 31 | <xsl:param name="bomb-testsuite" select="n"/>
|
---|
[28f4756] | 32 |
|
---|
[877cc6a] | 33 | <!-- Install vim-lang package? -->
|
---|
[401f81e] | 34 | <xsl:param name="vim-lang" select="y"/>
|
---|
[877cc6a] | 35 |
|
---|
| 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"/>
|
---|
[877cc6a] | 44 |
|
---|
| 45 | <xsl:template match="/">
|
---|
| 46 | <xsl:apply-templates select="//sect1"/>
|
---|
| 47 | </xsl:template>
|
---|
| 48 |
|
---|
| 49 | <xsl:template match="sect1">
|
---|
| 50 | <xsl:choose>
|
---|
| 51 | <xsl:when test="../@id='chapter-partitioning' or
|
---|
| 52 | ../@id='chapter-getting-materials' or
|
---|
| 53 | ../@id='chapter-final-preps'"/>
|
---|
| 54 | <xsl:when test="../@id='chapter-testsuite-tools' and $testsuite='0'"/>
|
---|
| 55 | <xsl:when test="../@id='chapter-boot' and $method='chroot'"/>
|
---|
| 56 | <xsl:when test="../@id='chapter-chroot' and $method='boot'"/>
|
---|
| 57 | <xsl:otherwise>
|
---|
| 58 | <xsl:if test="count(descendant::screen/userinput) > 0 and
|
---|
| 59 | count(descendant::screen/userinput) >
|
---|
| 60 | count(descendant::screen[@role='nodump'])">
|
---|
| 61 | <!-- The dirs names -->
|
---|
| 62 | <xsl:variable name="pi-dir" select="../processing-instruction('dbhtml')"/>
|
---|
| 63 | <xsl:variable name="pi-dir-value" select="substring-after($pi-dir,'dir=')"/>
|
---|
| 64 | <xsl:variable name="quote-dir" select="substring($pi-dir-value,1,1)"/>
|
---|
| 65 | <xsl:variable name="dirname" select="substring-before(substring($pi-dir-value,2),$quote-dir)"/>
|
---|
| 66 | <!-- The file names -->
|
---|
| 67 | <xsl:variable name="pi-file" select="processing-instruction('dbhtml')"/>
|
---|
| 68 | <xsl:variable name="pi-file-value" select="substring-after($pi-file,'filename=')"/>
|
---|
| 69 | <xsl:variable name="filename" select="substring-before(substring($pi-file-value,2),'.html')"/>
|
---|
| 70 | <!-- The build order -->
|
---|
| 71 | <xsl:variable name="position" select="position()"/>
|
---|
| 72 | <xsl:variable name="order">
|
---|
| 73 | <xsl:choose>
|
---|
| 74 | <xsl:when test="string-length($position) = 1">
|
---|
| 75 | <xsl:text>00</xsl:text>
|
---|
| 76 | <xsl:value-of select="$position"/>
|
---|
| 77 | </xsl:when>
|
---|
| 78 | <xsl:when test="string-length($position) = 2">
|
---|
| 79 | <xsl:text>0</xsl:text>
|
---|
| 80 | <xsl:value-of select="$position"/>
|
---|
| 81 | </xsl:when>
|
---|
| 82 | <xsl:otherwise>
|
---|
| 83 | <xsl:value-of select="$position"/>
|
---|
| 84 | </xsl:otherwise>
|
---|
| 85 | </xsl:choose>
|
---|
| 86 | </xsl:variable>
|
---|
| 87 | <!-- Creating dirs and files -->
|
---|
| 88 | <exsl:document href="{$dirname}/{$order}-{$filename}" method="text">
|
---|
[1330ebc] | 89 | <xsl:choose>
|
---|
| 90 | <xsl:when test="@id='ch-chroot-changingowner' or
|
---|
| 91 | @id='ch-chroot-creatingdirs' or
|
---|
[7d6fe10] | 92 | @id='ch-chroot-createfiles' or
|
---|
| 93 | @id='ch-system-stripping'">
|
---|
[1330ebc] | 94 | <xsl:text>#!/tools/bin/bash
set +h
</xsl:text>
|
---|
| 95 | </xsl:when>
|
---|
| 96 | <xsl:otherwise>
|
---|
| 97 | <xsl:text>#!/bin/bash
set +h
</xsl:text>
|
---|
| 98 | </xsl:otherwise>
|
---|
| 99 | </xsl:choose>
|
---|
[5f4982d] | 100 | <xsl:if test="not(@id='ch-system-stripping')">
|
---|
| 101 | <xsl:text>set -e</xsl:text>
|
---|
| 102 | </xsl:if>
|
---|
| 103 | <xsl:text>
</xsl:text>
|
---|
[58b186c] | 104 | <xsl:if test="sect2[@role='installation'] and
|
---|
| 105 | not(@id='ch-system-multiarch-wrapper')">
|
---|
[877cc6a] | 106 | <xsl:text>cd $PKGDIR
</xsl:text>
|
---|
[401f81e] | 107 | <xsl:if test="@id='ch-system-vim' and $vim-lang = 'y'">
|
---|
[877cc6a] | 108 | <xsl:text>tar -xvf ../vim-&vim-version;-lang.* --strip-components=1
</xsl:text>
|
---|
| 109 | </xsl:if>
|
---|
| 110 | </xsl:if>
|
---|
| 111 | <xsl:apply-templates select=".//para/userinput | .//screen"/>
|
---|
| 112 | <xsl:text>exit</xsl:text>
|
---|
| 113 | </exsl:document>
|
---|
| 114 | </xsl:if>
|
---|
| 115 | </xsl:otherwise>
|
---|
| 116 | </xsl:choose>
|
---|
| 117 | </xsl:template>
|
---|
| 118 |
|
---|
| 119 | <xsl:template match="screen">
|
---|
| 120 | <xsl:if test="child::* = userinput and not(@role = 'nodump')">
|
---|
| 121 | <xsl:apply-templates select="userinput" mode="screen"/>
|
---|
| 122 | </xsl:if>
|
---|
| 123 | </xsl:template>
|
---|
| 124 |
|
---|
| 125 | <xsl:template match="para/userinput">
|
---|
| 126 | <xsl:if test="(contains(string(),'test') or
|
---|
| 127 | contains(string(),'check')) and
|
---|
| 128 | ($testsuite = '2' or $testsuite = '3')">
|
---|
[28f4756] | 129 | <xsl:choose>
|
---|
[401f81e] | 130 | <xsl:when test="$bomb-testsuite = 'n'">
|
---|
[28f4756] | 131 | <xsl:value-of select="substring-before(string(),'make')"/>
|
---|
| 132 | <xsl:text>make -k</xsl:text>
|
---|
| 133 | <xsl:value-of select="substring-after(string(),'make')"/>
|
---|
| 134 | <xsl:text> >> $TEST_LOG 2>&1 || true
</xsl:text>
|
---|
| 135 | </xsl:when>
|
---|
| 136 | <xsl:otherwise>
|
---|
| 137 | <xsl:apply-templates/>
|
---|
[a1f1969] | 138 | <xsl:text> >> $TEST_LOG 2>&1</xsl:text>
|
---|
| 139 | <xsl:if test="contains(string(),' -k ')">
|
---|
| 140 | <xsl:text> || true</xsl:text>
|
---|
| 141 | </xsl:if>
|
---|
| 142 | <xsl:text>
</xsl:text>
|
---|
[28f4756] | 143 | </xsl:otherwise>
|
---|
| 144 | </xsl:choose>
|
---|
[877cc6a] | 145 | </xsl:if>
|
---|
| 146 | </xsl:template>
|
---|
| 147 |
|
---|
| 148 | <xsl:template match="userinput" mode="screen">
|
---|
| 149 | <xsl:choose>
|
---|
| 150 | <!-- Estandarized package formats -->
|
---|
| 151 | <xsl:when test="contains(string(),'tar.gz')">
|
---|
| 152 | <xsl:value-of select="substring-before(string(),'tar.gz')"/>
|
---|
| 153 | <xsl:text>tar.*</xsl:text>
|
---|
| 154 | <xsl:value-of select="substring-after(string(),'tar.gz')"/>
|
---|
| 155 | <xsl:text>
</xsl:text>
|
---|
| 156 | </xsl:when>
|
---|
| 157 | <!-- Setting $LANG for /etc/profile -->
|
---|
| 158 | <xsl:when test="ancestor::sect1[@id='ch-scripts-profile'] and
|
---|
| 159 | contains(string(),'export LANG=')">
|
---|
| 160 | <xsl:value-of select="substring-before(string(),'export LANG=')"/>
|
---|
| 161 | <xsl:text>export LANG=</xsl:text>
|
---|
| 162 | <xsl:value-of select="$lang"/>
|
---|
| 163 | <xsl:value-of select="substring-after(string(),'charmap]')"/>
|
---|
| 164 | <xsl:text>
</xsl:text>
|
---|
| 165 | </xsl:when>
|
---|
[f4caf9c] | 166 | <!-- Compile the keymap into the kernel has been disabled for 1.0 -->
|
---|
| 167 | <xsl:when test="contains(string(),'defkeymap')"/>
|
---|
[877cc6a] | 168 | <!-- Copying the kernel config file -->
|
---|
| 169 | <xsl:when test="string() = 'make mrproper'">
|
---|
| 170 | <xsl:text>make mrproper
</xsl:text>
|
---|
| 171 | <xsl:if test="ancestor::sect1[@id='ch-boot-kernel']">
|
---|
| 172 | <xsl:text>cp -v ../bootkernel-config .config
</xsl:text>
|
---|
| 173 | </xsl:if>
|
---|
| 174 | <xsl:if test="ancestor::sect1[@id='ch-bootable-kernel']">
|
---|
| 175 | <xsl:text>cp -v ../kernel-config .config
</xsl:text>
|
---|
| 176 | </xsl:if>
|
---|
| 177 | </xsl:when>
|
---|
| 178 | <!-- No interactive commands are needed if the .config file is the proper one -->
|
---|
| 179 | <xsl:when test="contains(string(),'menuconfig')"/>
|
---|
| 180 | <!-- The Coreutils and Module-Init-Tools test suites are optional -->
|
---|
[a229600] | 181 | <xsl:when test="(ancestor::sect1[@id='ch-system-coreutils'] or
|
---|
[877cc6a] | 182 | ancestor::sect1[@id='ch-system-module-init-tools']) and
|
---|
| 183 | (contains(string(),'check') or
|
---|
[a229600] | 184 | contains(string(),'dummy'))">
|
---|
| 185 | <xsl:choose>
|
---|
| 186 | <xsl:when test="$testsuite = '0' or $testsuite = '1'"/>
|
---|
| 187 | <xsl:otherwise>
|
---|
[28f4756] | 188 | <xsl:if test="not(contains(string(),'check'))">
|
---|
| 189 | <xsl:apply-templates/>
|
---|
| 190 | <xsl:text>
</xsl:text>
|
---|
| 191 | </xsl:if>
|
---|
[a229600] | 192 | <xsl:if test="contains(string(),'check')">
|
---|
[28f4756] | 193 | <xsl:choose>
|
---|
[401f81e] | 194 | <xsl:when test="$bomb-testsuite = 'n'">
|
---|
[28f4756] | 195 | <xsl:value-of select="substring-before(string(),'check')"/>
|
---|
| 196 | <xsl:text>-k check</xsl:text>
|
---|
| 197 | <xsl:value-of select="substring-after(string(),'check')"/>
|
---|
| 198 | <xsl:text> >> $TEST_LOG 2>&1 || true
</xsl:text>
|
---|
| 199 | </xsl:when>
|
---|
| 200 | <xsl:otherwise>
|
---|
| 201 | <xsl:apply-templates/>
|
---|
[3014928] | 202 | <xsl:text> >> $TEST_LOG 2>&1</xsl:text>
|
---|
[a1f1969] | 203 | <xsl:if test="contains(string(),' -k ')">
|
---|
| 204 | <xsl:text> || true</xsl:text>
|
---|
| 205 | </xsl:if>
|
---|
[f98695c] | 206 | <xsl:text>
</xsl:text>
|
---|
[28f4756] | 207 | </xsl:otherwise>
|
---|
| 208 | </xsl:choose>
|
---|
[a229600] | 209 | </xsl:if>
|
---|
| 210 | </xsl:otherwise>
|
---|
| 211 | </xsl:choose>
|
---|
| 212 | </xsl:when>
|
---|
[877cc6a] | 213 | <!-- Fixing toolchain test suites run -->
|
---|
| 214 | <xsl:when test="string() = 'make check' or
|
---|
| 215 | string() = 'make -k check'">
|
---|
| 216 | <xsl:choose>
|
---|
| 217 | <xsl:when test="$testsuite != '0'">
|
---|
[28f4756] | 218 | <xsl:choose>
|
---|
[401f81e] | 219 | <xsl:when test="$bomb-testsuite = 'n'">
|
---|
[28f4756] | 220 | <xsl:text>make -k check >> $TEST_LOG 2>&1 || true
</xsl:text>
|
---|
| 221 | </xsl:when>
|
---|
| 222 | <xsl:otherwise>
|
---|
| 223 | <xsl:apply-templates/>
|
---|
[a1f1969] | 224 | <xsl:text> >> $TEST_LOG 2>&1</xsl:text>
|
---|
| 225 | <xsl:if test="contains(string(),' -k ')">
|
---|
| 226 | <xsl:text> || true</xsl:text>
|
---|
| 227 | </xsl:if>
|
---|
| 228 | <xsl:text>
</xsl:text>
|
---|
[28f4756] | 229 | </xsl:otherwise>
|
---|
| 230 | </xsl:choose>
|
---|
[877cc6a] | 231 | </xsl:when>
|
---|
| 232 | </xsl:choose>
|
---|
| 233 | </xsl:when>
|
---|
| 234 | <xsl:when test="contains(string(),'glibc-check-log')">
|
---|
| 235 | <xsl:choose>
|
---|
| 236 | <xsl:when test="$testsuite != '0'">
|
---|
[a229600] | 237 | <xsl:value-of select="substring-before(string(),'>g')"/>
|
---|
[28f4756] | 238 | <xsl:choose>
|
---|
[401f81e] | 239 | <xsl:when test="$bomb-testsuite = 'n'">
|
---|
[28f4756] | 240 | <xsl:text>>> $TEST_LOG 2>&1 || true
</xsl:text>
|
---|
| 241 | </xsl:when>
|
---|
| 242 | <xsl:otherwise>
|
---|
[a1f1969] | 243 | <xsl:text>>> $TEST_LOG 2>&1</xsl:text>
|
---|
| 244 | <xsl:if test="contains(string(),' -k ')">
|
---|
| 245 | <xsl:text> || true</xsl:text>
|
---|
| 246 | </xsl:if>
|
---|
| 247 | <xsl:text>
</xsl:text>
|
---|
[28f4756] | 248 | </xsl:otherwise>
|
---|
| 249 | </xsl:choose>
|
---|
[877cc6a] | 250 | </xsl:when>
|
---|
| 251 | </xsl:choose>
|
---|
| 252 | </xsl:when>
|
---|
| 253 | <xsl:when test="contains(string(),'test_summary') or
|
---|
| 254 | contains(string(),'expect -c')">
|
---|
| 255 | <xsl:choose>
|
---|
| 256 | <xsl:when test="$testsuite != '0'">
|
---|
| 257 | <xsl:apply-templates/>
|
---|
[28f4756] | 258 | <xsl:text> >> $TEST_LOG
</xsl:text>
|
---|
[877cc6a] | 259 | </xsl:when>
|
---|
| 260 | </xsl:choose>
|
---|
| 261 | </xsl:when>
|
---|
| 262 | <!-- Don't stop on strip run -->
|
---|
| 263 | <xsl:when test="contains(string(),'strip ')">
|
---|
| 264 | <xsl:apply-templates/>
|
---|
| 265 | <xsl:text> || true
</xsl:text>
|
---|
| 266 | </xsl:when>
|
---|
| 267 | <!-- The rest of commands -->
|
---|
| 268 | <xsl:otherwise>
|
---|
| 269 | <xsl:apply-templates/>
|
---|
| 270 | <xsl:text>
</xsl:text>
|
---|
| 271 | </xsl:otherwise>
|
---|
| 272 | </xsl:choose>
|
---|
| 273 | </xsl:template>
|
---|
| 274 |
|
---|
| 275 | <xsl:template match="replaceable">
|
---|
| 276 | <xsl:choose>
|
---|
| 277 | <xsl:when test="ancestor::sect1[@id='ch-system-glibc']">
|
---|
| 278 | <xsl:value-of select="$timezone"/>
|
---|
| 279 | </xsl:when>
|
---|
| 280 | <xsl:when test="ancestor::sect1[@id='ch-system-groff']">
|
---|
| 281 | <xsl:value-of select="$page"/>
|
---|
| 282 | </xsl:when>
|
---|
| 283 | <xsl:otherwise>
|
---|
| 284 | <xsl:text>**EDITME</xsl:text>
|
---|
| 285 | <xsl:apply-templates/>
|
---|
| 286 | <xsl:text>EDITME**</xsl:text>
|
---|
| 287 | </xsl:otherwise>
|
---|
| 288 | </xsl:choose>
|
---|
| 289 | </xsl:template>
|
---|
| 290 |
|
---|
| 291 | </xsl:stylesheet>
|
---|