[7072e1f] | 1 | <?xml version="1.0" encoding="ISO-8859-1"?>
|
---|
[db181c47] | 2 |
|
---|
[877cc6a] | 3 | <!-- $Id$ -->
|
---|
| 4 |
|
---|
[7072e1f] | 5 | <xsl:stylesheet
|
---|
| 6 | xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
|
---|
| 7 | xmlns:exsl="http://exslt.org/common"
|
---|
| 8 | extension-element-prefixes="exsl"
|
---|
| 9 | version="1.0">
|
---|
[557fe91] | 10 |
|
---|
[945ccaa] | 11 | <!-- Parameters -->
|
---|
| 12 |
|
---|
[0ad3a33] | 13 | <!-- which revision attribute to include: can only be sysv or systemd,
|
---|
| 14 | but we leave checking to the caller-->
|
---|
| 15 | <xsl:param name="revision" select="'sysv'"/>
|
---|
| 16 |
|
---|
[7072e1f] | 17 | <!-- use package management ?
|
---|
| 18 | n = no, original behavior
|
---|
| 19 | y = yes, add PKG_DEST to scripts in install commands of chapter06-08
|
---|
| 20 | -->
|
---|
[945ccaa] | 21 | <xsl:param name="pkgmngt" select="'n'"/>
|
---|
| 22 |
|
---|
| 23 | <!-- Package management with "porg style" ?
|
---|
| 24 | n = no, same as pkgmngt description above
|
---|
| 25 | y = yes, wrap install commands of chapter06-08 into a bash function.
|
---|
| 26 | note that pkgmngt must be 'y' in this case
|
---|
| 27 | -->
|
---|
| 28 | <xsl:param name="wrap-install" select='"n"'/>
|
---|
[2e1c1c3] | 29 |
|
---|
[31d6944] | 30 | <!-- Run test suites?
|
---|
| 31 | 0 = none
|
---|
[945ccaa] | 32 | 1 = only chapter06 critical testsuites
|
---|
[31d6944] | 33 | 2 = all chapter06 testsuites
|
---|
[28f4756] | 34 | 3 = all chapter05 and chapter06 testsuites
|
---|
| 35 | -->
|
---|
[31d6944] | 36 | <xsl:param name="testsuite" select="1"/>
|
---|
[01e51a1] | 37 |
|
---|
[28f4756] | 38 | <!-- Bomb on test suites failures?
|
---|
[401f81e] | 39 | n = no, I want to build the full system and review the logs
|
---|
| 40 | y = yes, bomb at the first test suite failure to can review the build dir
|
---|
[28f4756] | 41 | -->
|
---|
[945ccaa] | 42 | <xsl:param name="bomb-testsuite" select="'n'"/>
|
---|
[28f4756] | 43 |
|
---|
[085435e] | 44 | <!-- Install non wide character ncurses 5? -->
|
---|
| 45 | <xsl:param name="ncurses5" select="'n'"/>
|
---|
[2e1c1c3] | 46 |
|
---|
[dc7fd7b] | 47 | <!-- Should we strip excutables and libraries? -->
|
---|
| 48 | <xsl:param name='strip' select="'n'"/>
|
---|
| 49 |
|
---|
| 50 | <!-- Should we remove .la files after chapter 5 and chapter 6? -->
|
---|
| 51 | <xsl:param name='del-la-files' select="'y'"/>
|
---|
| 52 |
|
---|
[877cc6a] | 53 | <!-- Time zone -->
|
---|
[945ccaa] | 54 | <xsl:param name="timezone" select="'GMT'"/>
|
---|
[2e1c1c3] | 55 |
|
---|
[877cc6a] | 56 | <!-- Page size -->
|
---|
[945ccaa] | 57 | <xsl:param name="page" select="'letter'"/>
|
---|
[2e1c1c3] | 58 |
|
---|
[877cc6a] | 59 | <!-- Locale settings -->
|
---|
[945ccaa] | 60 | <xsl:param name="lang" select="'C'"/>
|
---|
[b339c94] | 61 |
|
---|
| 62 | <!-- Install the whole set of locales -->
|
---|
[945ccaa] | 63 | <xsl:param name='full-locale' select='"n"'/>
|
---|
[2e1c1c3] | 64 |
|
---|
[945ccaa] | 65 | <!-- Hostname -->
|
---|
| 66 | <xsl:param name='hostname' select='"HOSTNAME"'/>
|
---|
| 67 |
|
---|
| 68 | <!-- Network parameters: interface, ip, gateway, prefix, broadcast, domain
|
---|
| 69 | and nameservers -->
|
---|
| 70 | <xsl:param name='interface' select="'eth0'"/>
|
---|
| 71 | <xsl:param name='ip' select='"10.0.2.9"'/>
|
---|
| 72 | <xsl:param name='gateway' select='"10.0.2.2"'/>
|
---|
| 73 | <xsl:param name='prefix' select='24'/>
|
---|
| 74 | <xsl:param name='broadcast' select='"10.0.2.255"'/>
|
---|
| 75 | <xsl:param name='domain' select='"lfs.org"'/>
|
---|
| 76 | <xsl:param name='nameserver1' select='"10.0.2.3"'/>
|
---|
| 77 | <xsl:param name='nameserver2' select='"8.8.8.8"'/>
|
---|
| 78 |
|
---|
[3b43e17b] | 79 | <!-- Console parameters: font, fontmap, unicode (y/n), keymap, local (y:
|
---|
| 80 | hardware clock set to local time/n:hardware clock set to UTC)
|
---|
| 81 | and log-level -->
|
---|
| 82 | <xsl:param name='font' select="'lat0-16'"/>
|
---|
| 83 | <xsl:param name='keymap' select="'us'"/>
|
---|
| 84 | <xsl:param name='local' select="'n'"/>
|
---|
| 85 | <xsl:param name='log-level' select="'4'"/>
|
---|
| 86 |
|
---|
[2758d94] | 87 | <!-- The scripts root is needed for printing disk usage -->
|
---|
| 88 | <xsl:param name='script-root' select="'jhalfs'"/>
|
---|
| 89 |
|
---|
[945ccaa] | 90 | <!-- End parameters -->
|
---|
| 91 |
|
---|
[4762fb9] | 92 | <!-- bashdir is used at the beginning of chapter 6, for the #! line.
|
---|
| 93 | If we created a /tools directory in chapter 4, bash is in /tools/bin,
|
---|
| 94 | otherwise it is in /bin.-->
|
---|
| 95 | <xsl:variable name="bashdir">
|
---|
| 96 | <xsl:choose>
|
---|
[a2b5689] | 97 | <xsl:when test="//sect1[@id='ch-preps-creatingtoolsdir']">
|
---|
[4762fb9] | 98 | <xsl:text>/tools</xsl:text>
|
---|
| 99 | </xsl:when>
|
---|
| 100 | <xsl:otherwise>
|
---|
| 101 | <xsl:text></xsl:text>
|
---|
| 102 | </xsl:otherwise>
|
---|
| 103 | </xsl:choose>
|
---|
| 104 | </xsl:variable>
|
---|
[557fe91] | 105 | <xsl:template match="/">
|
---|
[0ad3a33] | 106 | <xsl:apply-templates select="//sect1[not(@revision) or
|
---|
| 107 | @revision=$revision]"/>
|
---|
[557fe91] | 108 | </xsl:template>
|
---|
[2e1c1c3] | 109 |
|
---|
[557fe91] | 110 | <xsl:template match="sect1">
|
---|
[1814367] | 111 | <!-- Since this xsl:if tag encloses the whole template, it would
|
---|
| 112 | be much better to transpose this condition to the select part
|
---|
| 113 | of the "calling" apply-template. But that would change the numbering,
|
---|
| 114 | so that it would be difficult to compare to previous versions. So for
|
---|
| 115 | version 2.4, let us keep this -->
|
---|
[a131250] | 116 | <xsl:if test="(../@id='chapter-temporary-tools' or
|
---|
| 117 | ../@id='chapter-final-preps' or
|
---|
| 118 | ../@id='chapter-building-system' or
|
---|
| 119 | ../@id='chapter-bootscripts' or
|
---|
| 120 | ../@id='chapter-config' or
|
---|
| 121 | ../@id='chapter-bootable') and
|
---|
[1814367] | 122 | (sect2[not(@revision) or @revision=$revision]//..|.)/
|
---|
| 123 | screen[(not(@role) or @role != 'nodump') and
|
---|
| 124 | (not(@revision) or @revision=$revision)]/
|
---|
| 125 | userinput[not(starts-with(string(),'chroot'))]">
|
---|
[d68eb1b] | 126 | <!-- The last condition is a hack to allow previous versions of the
|
---|
| 127 | book where the chroot commands did not have role="nodump".
|
---|
| 128 | It only works if the chroot command is the only one on the page -->
|
---|
[c4cf6de] | 129 | <!-- The dirs names -->
|
---|
| 130 | <xsl:variable name="pi-dir" select="../processing-instruction('dbhtml')"/>
|
---|
| 131 | <xsl:variable name="pi-dir-value" select="substring-after($pi-dir,'dir=')"/>
|
---|
| 132 | <xsl:variable name="quote-dir" select="substring($pi-dir-value,1,1)"/>
|
---|
| 133 | <xsl:variable name="dirname" select="substring-before(substring($pi-dir-value,2),$quote-dir)"/>
|
---|
[7072e1f] | 134 | <!-- The file names -->
|
---|
| 135 | <xsl:variable name="pi-file" select="processing-instruction('dbhtml')"/>
|
---|
| 136 | <xsl:variable name="pi-file-value" select="substring-after($pi-file,'filename=')"/>
|
---|
| 137 | <xsl:variable name="filename" select="substring-before(substring($pi-file-value,2),'.html')"/>
|
---|
| 138 | <!-- The build order -->
|
---|
| 139 | <xsl:variable name="position" select="position()"/>
|
---|
| 140 | <xsl:variable name="order">
|
---|
| 141 | <xsl:choose>
|
---|
| 142 | <xsl:when test="string-length($position) = 1">
|
---|
| 143 | <xsl:text>00</xsl:text>
|
---|
| 144 | <xsl:value-of select="$position"/>
|
---|
| 145 | </xsl:when>
|
---|
| 146 | <xsl:when test="string-length($position) = 2">
|
---|
| 147 | <xsl:text>0</xsl:text>
|
---|
| 148 | <xsl:value-of select="$position"/>
|
---|
| 149 | </xsl:when>
|
---|
| 150 | <xsl:otherwise>
|
---|
| 151 | <xsl:value-of select="$position"/>
|
---|
| 152 | </xsl:otherwise>
|
---|
| 153 | </xsl:choose>
|
---|
| 154 | </xsl:variable>
|
---|
| 155 | <!-- Inclusion of package manager scriptlets -->
|
---|
| 156 | <xsl:if test="@id='ch-tools-stripping' and $pkgmngt='y'">
|
---|
| 157 | <xsl:apply-templates
|
---|
[575bcf3] | 158 | select="document('packageManager.xml')//sect1[contains(@id,'ch-tools')]"
|
---|
[7072e1f] | 159 | mode="pkgmngt">
|
---|
[575bcf3] | 160 | <xsl:with-param name="order" select="$order"/>
|
---|
[7072e1f] | 161 | <xsl:with-param name="dirname" select="$dirname"/>
|
---|
| 162 | </xsl:apply-templates>
|
---|
| 163 | </xsl:if>
|
---|
| 164 | <xsl:if test="@id='ch-system-strippingagain' and $pkgmngt='y'">
|
---|
| 165 | <xsl:apply-templates
|
---|
[575bcf3] | 166 | select="document('packageManager.xml')//sect1[contains(@id,'ch-system')]"
|
---|
[7072e1f] | 167 | mode="pkgmngt">
|
---|
[575bcf3] | 168 | <xsl:with-param name="order" select="$order"/>
|
---|
[7072e1f] | 169 | <xsl:with-param name="dirname" select="$dirname"/>
|
---|
| 170 | </xsl:apply-templates>
|
---|
| 171 | </xsl:if>
|
---|
| 172 | <!-- Creating dirs and files -->
|
---|
| 173 | <exsl:document href="{$dirname}/{$order}-{$filename}" method="text">
|
---|
[4762fb9] | 174 | <xsl:text>#!</xsl:text>
|
---|
| 175 | <xsl:if test="@id='ch-system-creatingdirs' or
|
---|
| 176 | @id='ch-system-createfiles' or
|
---|
| 177 | @id='ch-system-strippingagain'">
|
---|
| 178 | <xsl:copy-of select="$bashdir"/>
|
---|
| 179 | </xsl:if>
|
---|
| 180 | <xsl:text>/bin/bash
set +h
</xsl:text>
|
---|
[7072e1f] | 181 | <xsl:if test="not(@id='ch-tools-stripping') and
|
---|
| 182 | not(@id='ch-system-strippingagain')">
|
---|
| 183 | <xsl:text>set -e
</xsl:text>
|
---|
| 184 | </xsl:if>
|
---|
| 185 | <xsl:text>
</xsl:text>
|
---|
[a131250] | 186 | <xsl:if test="ancestor::chapter/@id != 'chapter-final-preps'">
|
---|
| 187 | <xsl:call-template name="start-script">
|
---|
| 188 | <xsl:with-param name="order" select="$order"/>
|
---|
| 189 | </xsl:call-template>
|
---|
| 190 | </xsl:if>
|
---|
[0ad3a33] | 191 | <xsl:apply-templates select="sect2[not(@revision) or
|
---|
| 192 | @revision=$revision] |
|
---|
| 193 | screen[(not(@role) or
|
---|
| 194 | @role!='nodump') and
|
---|
| 195 | (not(@revision) or
|
---|
| 196 | @revision=$revision)]/userinput"/>
|
---|
[e6e0c85] | 197 | <xsl:if test="@id='ch-system-creatingdirs' and $pkgmngt='y'">
|
---|
[f0a31de] | 198 | <xsl:apply-templates
|
---|
| 199 | select="document('packageManager.xml')//sect1[
|
---|
| 200 | @id='ch-pkgmngt-creatingdirs'
|
---|
[e6e0c85] | 201 | ]//userinput"
|
---|
| 202 | mode="pkgmngt"/>
|
---|
[f0a31de] | 203 | </xsl:if>
|
---|
[e6e0c85] | 204 | <xsl:if test="@id='ch-system-createfiles' and $pkgmngt='y'">
|
---|
[f0a31de] | 205 | <xsl:apply-templates
|
---|
| 206 | select="document('packageManager.xml')//sect1[
|
---|
| 207 | @id='ch-pkgmngt-createfiles'
|
---|
[e6e0c85] | 208 | ]//userinput"
|
---|
| 209 | mode="pkgmngt"/>
|
---|
[f0a31de] | 210 | </xsl:if>
|
---|
[a131250] | 211 | <xsl:if test="ancestor::chapter/@id != 'chapter-final-preps'">
|
---|
| 212 | <xsl:text>echo -e "\n\nTotalseconds: $SECONDS\n"
</xsl:text>
|
---|
| 213 | <xsl:call-template name="end-script"/>
|
---|
| 214 | </xsl:if>
|
---|
[f0a31de] | 215 | <xsl:text>exit
</xsl:text>
|
---|
| 216 | </exsl:document>
|
---|
| 217 | </xsl:if>
|
---|
| 218 | </xsl:template>
|
---|
| 219 |
|
---|
| 220 | <xsl:template match="sect2">
|
---|
| 221 | <xsl:apply-templates
|
---|
[0ad3a33] | 222 | select=".//screen[(not(@role) or
|
---|
| 223 | @role != 'nodump') and
|
---|
| 224 | (not(@revision) or
|
---|
| 225 | @revision=$revision)]/userinput[
|
---|
[f0a31de] | 226 | @remap = 'pre' or
|
---|
| 227 | @remap = 'configure' or
|
---|
| 228 | @remap = 'make' or
|
---|
| 229 | @remap = 'test' and
|
---|
[f2e80ac] | 230 | not(current()/../@id='ch-tools-dejagnu') and
|
---|
| 231 | not(current()/../@id='ch-system-systemd')]"/>
|
---|
[f0a31de] | 232 | <xsl:if
|
---|
| 233 | test="ancestor::chapter[@id != 'chapter-temporary-tools'] and
|
---|
| 234 | $pkgmngt = 'y' and
|
---|
| 235 | descendant::screen[not(@role) or
|
---|
| 236 | @role != 'nodump']/userinput[
|
---|
| 237 | @remap='install']">
|
---|
[945ccaa] | 238 | <xsl:choose>
|
---|
| 239 | <xsl:when test="$wrap-install='y'">
|
---|
| 240 | <xsl:text>wrapInstall '
|
---|
| 241 | </xsl:text>
|
---|
| 242 | </xsl:when>
|
---|
| 243 | <xsl:otherwise>
|
---|
[adbd09b] | 244 | <!-- We cannot know which directory(ies) are needed by the package. Create a
|
---|
| 245 | reasonable bunch of them. Should be close to "Creating Directories".-->
|
---|
| 246 | <xsl:text>mkdir -pv $PKG_DEST/{bin,boot,etc,lib,sbin}
|
---|
| 247 | mkdir -pv $PKG_DEST/usr/{bin,include,lib/pkgconfig,sbin}
|
---|
[2758d94] | 248 | mkdir -pv $PKG_DEST/usr/share/{doc,info,bash-completion/completions}
|
---|
[7072e1f] | 249 | mkdir -pv $PKG_DEST/usr/share/man/man{1..8}
|
---|
| 250 | case $(uname -m) in
|
---|
[adbd09b] | 251 | x86_64) mkdir -v $PKG_DEST/lib64 ;;
|
---|
[7072e1f] | 252 | esac
|
---|
| 253 | </xsl:text>
|
---|
[945ccaa] | 254 | </xsl:otherwise>
|
---|
| 255 | </xsl:choose>
|
---|
[f0a31de] | 256 | </xsl:if>
|
---|
| 257 | <xsl:apply-templates
|
---|
[0ad3a33] | 258 | select=".//screen[(not(@role) or
|
---|
| 259 | @role != 'nodump') and
|
---|
| 260 | (not(@revision) or
|
---|
| 261 | @revision=$revision)]/userinput[@remap = 'install']"/>
|
---|
[f0a31de] | 262 | <xsl:if test="ancestor::chapter[@id != 'chapter-temporary-tools'] and
|
---|
| 263 | descendant::screen[not(@role) or
|
---|
| 264 | @role != 'nodump']/userinput[
|
---|
| 265 | @remap='install']">
|
---|
[945ccaa] | 266 | <xsl:choose>
|
---|
[dc7fd7b] | 267 | <xsl:when test="$pkgmngt='n'"/>
|
---|
[945ccaa] | 268 | <xsl:when test="$wrap-install='y'">
|
---|
| 269 | <xsl:if test="../@id = 'ch-system-man-pages'">
|
---|
[560bef1] | 270 | <!-- these files are provided by the shadow package -->
|
---|
[945ccaa] | 271 | <xsl:text>rm -fv /usr/share/man/{man3/getspnam.3,man5/passwd.5}
|
---|
| 272 | </xsl:text>
|
---|
| 273 | </xsl:if>
|
---|
| 274 | <!-- nologin is installed by util-linux. remove it from shadow -->
|
---|
| 275 | <xsl:if test="../@id = 'ch-system-shadow'">
|
---|
| 276 | <xsl:text>rm -fv /usr/share/man/man8/nologin.8
|
---|
| 277 | rm -fv /sbin/nologin
|
---|
| 278 | </xsl:text>
|
---|
| 279 | </xsl:if>
|
---|
| 280 | <xsl:text>'
|
---|
[9bbb9c8] | 281 | PREV_SEC=${SECONDS}
|
---|
[945ccaa] | 282 | packInstall
|
---|
[9bbb9c8] | 283 | SECONDS=${PREV_SEC}
|
---|
[945ccaa] | 284 | </xsl:text>
|
---|
| 285 | </xsl:when>
|
---|
| 286 | <xsl:otherwise>
|
---|
| 287 | <xsl:if test="../@id = 'ch-system-man-pages'">
|
---|
| 288 | <!-- these files are provided by the shadow package -->
|
---|
| 289 | <xsl:text>rm -fv $PKG_DEST/usr/share/man/{man3/getspnam.3,man5/passwd.5}
|
---|
[a983256] | 290 | </xsl:text>
|
---|
[945ccaa] | 291 | </xsl:if>
|
---|
[a983256] | 292 | <!-- nologin is installed by util-linux. remove it from shadow -->
|
---|
[945ccaa] | 293 | <xsl:if test="../@id = 'ch-system-shadow'">
|
---|
| 294 | <xsl:text>rm -fv $PKG_DEST/usr/share/man/man8/nologin.8
|
---|
[a983256] | 295 | rm -fv $PKG_DEST/sbin/nologin
|
---|
[7072e1f] | 296 | </xsl:text>
|
---|
[945ccaa] | 297 | </xsl:if>
|
---|
[adbd09b] | 298 | <!-- remove empty directories -->
|
---|
| 299 | <xsl:text>for dir in $PKG_DEST/usr/share/man/man{1..8} \
|
---|
[2758d94] | 300 | $PKG_DEST/usr/share/bash-completion{/completions,} \
|
---|
| 301 | $PKG_DEST/usr/share/{doc,info,man,} \
|
---|
[adbd09b] | 302 | $PKG_DEST/usr/lib/pkgconfig \
|
---|
| 303 | $PKG_DEST/usr/{lib,bin,sbin,include} \
|
---|
| 304 | $PKG_DEST/{boot,etc,lib,bin,sbin}; do
|
---|
| 305 | [ -d "$dir" ] && [ -z "$(ls $dir)" ] && rmdir -v $dir
|
---|
[7072e1f] | 306 | done
|
---|
[adbd09b] | 307 | [ -d $PKG_DEST/lib64 ] && [ -z "$(ls $PKG_DEST/lib64)" ] &&
|
---|
| 308 | rmdir -v $PKG_DEST/lib64
|
---|
[9bbb9c8] | 309 | PREV_SEC=${SECONDS}
|
---|
[7072e1f] | 310 | packInstall
|
---|
[9bbb9c8] | 311 | SECONDS=${PREV_SEC}
|
---|
[7072e1f] | 312 | rm -rf $PKG_DEST
|
---|
| 313 | </xsl:text>
|
---|
[945ccaa] | 314 | </xsl:otherwise>
|
---|
| 315 | </xsl:choose>
|
---|
[f0a31de] | 316 | </xsl:if>
|
---|
| 317 | <xsl:if test="$testsuite='3' and
|
---|
| 318 | ../@id='ch-tools-glibc' and
|
---|
| 319 | @role='installation'">
|
---|
| 320 | <xsl:copy-of select="//userinput[@remap='locale-test']"/>
|
---|
| 321 | <xsl:text>
</xsl:text>
|
---|
| 322 | </xsl:if>
|
---|
| 323 | <xsl:if test="../@id='ch-system-glibc' and @role='installation'">
|
---|
| 324 | <xsl:choose>
|
---|
| 325 | <xsl:when test="$full-locale='y'">
|
---|
| 326 | <xsl:copy-of select="//userinput[@remap='locale-full']"/>
|
---|
| 327 | <xsl:text>
</xsl:text>
|
---|
| 328 | </xsl:when>
|
---|
| 329 | <xsl:otherwise>
|
---|
| 330 | <xsl:copy-of select="//userinput[@remap='locale-test']"/>
|
---|
| 331 | <xsl:text>
</xsl:text>
|
---|
| 332 | <xsl:if test="not(contains(string(//userinput[@remap='locale-test']),$lang)) and $lang!='C' and $lang!='POSIX'">
|
---|
| 333 | <xsl:text>if LOCALE=`grep "</xsl:text>
|
---|
| 334 | <xsl:value-of select="$lang"/>
|
---|
| 335 | <xsl:text>/" $PKGDIR/localedata/SUPPORTED`; then
|
---|
[b339c94] | 336 | CHARMAP=`echo $LOCALE | sed 's,[^/]*/\([^ ]*\) [\],\1,'`
|
---|
| 337 | INPUT=`echo $LOCALE | sed 's,[/.].*,,'`
|
---|
| 338 | LOCALE=`echo $LOCALE | sed 's,/.*,,'`
|
---|
| 339 | localedef -i $INPUT -f $CHARMAP $LOCALE
|
---|
| 340 | fi
|
---|
| 341 | </xsl:text>
|
---|
[f0a31de] | 342 | </xsl:if>
|
---|
| 343 | </xsl:otherwise>
|
---|
| 344 | </xsl:choose>
|
---|
[c4cf6de] | 345 | </xsl:if>
|
---|
[f0a31de] | 346 | <xsl:apply-templates
|
---|
| 347 | select=".//screen[
|
---|
[0ad3a33] | 348 | (not(@role) or
|
---|
| 349 | @role != 'nodump') and
|
---|
| 350 | (not(@revision) or
|
---|
| 351 | @revision=$revision)
|
---|
[f0a31de] | 352 | ]/userinput[
|
---|
[f2e80ac] | 353 | not(@remap) or
|
---|
| 354 | @remap='adjust' or
|
---|
| 355 | @remap='test' and current()/../@id='ch-tools-dejagnu' or
|
---|
| 356 | @remap='test' and current()/../@id='ch-system-systemd'
|
---|
[f0a31de] | 357 | ]"/>
|
---|
[085435e] | 358 | <xsl:if test="../@id='ch-system-ncurses' and $ncurses5='y'">
|
---|
| 359 | <xsl:apply-templates select=".//screen[@role='nodump']"/>
|
---|
| 360 | </xsl:if>
|
---|
[557fe91] | 361 | </xsl:template>
|
---|
| 362 |
|
---|
[f0a31de] | 363 | <xsl:template match="sect1" mode="pkgmngt">
|
---|
[2758d94] | 364 | <xsl:param name="dirname" select="'chapter05'"/>
|
---|
[7072e1f] | 365 | <!-- The build order -->
|
---|
[2758d94] | 366 | <xsl:param name="order" select="'062'"/>
|
---|
[7072e1f] | 367 | <!-- The file names -->
|
---|
| 368 | <xsl:variable name="pi-file" select="processing-instruction('dbhtml')"/>
|
---|
| 369 | <xsl:variable name="pi-file-value" select="substring-after($pi-file,'filename=')"/>
|
---|
| 370 | <xsl:variable name="filename" select="substring-before(substring($pi-file-value,2),'.html')"/>
|
---|
| 371 | <!-- Creating dirs and files -->
|
---|
[8099885] | 372 | <xsl:if test="count(descendant::screen/userinput) > 0 and
|
---|
| 373 | count(descendant::screen/userinput) >
|
---|
| 374 | count(descendant::screen[@role='nodump'])">
|
---|
| 375 | <exsl:document href="{$dirname}/{$order}-{position()}-{$filename}"
|
---|
| 376 | method="text">
|
---|
| 377 | <xsl:text>#!/bin/bash
|
---|
[7072e1f] | 378 | set +h
|
---|
| 379 | set -e
|
---|
| 380 | </xsl:text>
|
---|
[2758d94] | 381 | <xsl:call-template name="start-script">
|
---|
| 382 | <xsl:with-param name="order" select="concat($order,'-',position())"/>
|
---|
| 383 | </xsl:call-template>
|
---|
[8099885] | 384 | <xsl:apply-templates
|
---|
| 385 | select=".//screen[not(@role) or
|
---|
| 386 | @role != 'nodump']/userinput[@remap != 'adjust']"
|
---|
[7072e1f] | 387 | mode="pkgmngt"/>
|
---|
[8099885] | 388 | <xsl:if test="$dirname = 'chapter06'">
|
---|
[9bbb9c8] | 389 | <xsl:text>PREV_SEC=${SECONDS}
|
---|
| 390 | packInstall
|
---|
| 391 | SECONDS=${PREV_SEC}
|
---|
[945ccaa] | 392 | rm -rf "$PKG_DEST"
|
---|
[7072e1f] | 393 | </xsl:text>
|
---|
[8099885] | 394 | </xsl:if>
|
---|
| 395 | <xsl:apply-templates
|
---|
| 396 | select=".//screen[not(@role) or
|
---|
| 397 | @role != 'nodump'
|
---|
| 398 | ]/userinput[not(@remap) or
|
---|
| 399 | @remap='adjust'
|
---|
[7072e1f] | 400 | ]"
|
---|
| 401 | mode="pkgmngt"/>
|
---|
[8099885] | 402 | <xsl:text>
|
---|
[7072e1f] | 403 | echo -e "\n\nTotalseconds: $SECONDS\n"
|
---|
[2758d94] | 404 | </xsl:text>
|
---|
| 405 | <xsl:call-template name="end-script"/>
|
---|
| 406 | <xsl:text>exit
|
---|
[7072e1f] | 407 | </xsl:text>
|
---|
[8099885] | 408 | </exsl:document>
|
---|
| 409 | </xsl:if>
|
---|
[557fe91] | 410 | </xsl:template>
|
---|
| 411 |
|
---|
[7072e1f] | 412 | <xsl:template match="userinput" mode="pkgmngt">
|
---|
| 413 | <xsl:apply-templates/>
|
---|
| 414 | <xsl:text>
</xsl:text>
|
---|
| 415 | </xsl:template>
|
---|
[2e1c1c3] | 416 |
|
---|
[7072e1f] | 417 | <xsl:template match="userinput">
|
---|
[3eb60fa] | 418 | <xsl:choose>
|
---|
[fd691b4] | 419 | <!-- Copying the kernel config file -->
|
---|
| 420 | <xsl:when test="string() = 'make mrproper'">
|
---|
| 421 | <xsl:text>make mrproper
</xsl:text>
|
---|
[7072e1f] | 422 | <xsl:if test="ancestor::sect1[@id='ch-bootable-kernel']">
|
---|
[bcfb3bf] | 423 | <xsl:text>cp -v ../kernel-config .config
</xsl:text>
|
---|
| 424 | </xsl:if>
|
---|
[92568bf] | 425 | </xsl:when>
|
---|
[7072e1f] | 426 | <!-- test instructions -->
|
---|
[1d5f3e3] | 427 | <xsl:when test="@remap = 'test'">
|
---|
[5a8939e] | 428 | <xsl:call-template name="comment-test">
|
---|
| 429 | <xsl:with-param name="instructions" select="string()"/>
|
---|
| 430 | </xsl:call-template>
|
---|
[4afcedb] | 431 | </xsl:when>
|
---|
[7072e1f] | 432 | <!-- End of test instructions -->
|
---|
[dc7fd7b] | 433 | <!-- If the instructions contain "strip ", it may mean they contain also .la
|
---|
| 434 | file removal (and possibly other clean up). We therefore call a template
|
---|
| 435 | to comment them out appropriately and also to not stop if stripping
|
---|
| 436 | fails. -->
|
---|
| 437 | <xsl:when test="contains(string(),'strip ') or
|
---|
| 438 | contains(string(),'\*.la')">
|
---|
| 439 | <xsl:call-template name="comment-strip">
|
---|
| 440 | <xsl:with-param name="instructions" select="string()"/>
|
---|
| 441 | </xsl:call-template>
|
---|
[1f025ca] | 442 | </xsl:when>
|
---|
[7072e1f] | 443 | <!-- Package management -->
|
---|
| 444 | <!-- Add $PKG_DEST to installation commands -->
|
---|
| 445 | <xsl:when test="@remap='install' and
|
---|
| 446 | not(ancestor::chapter[
|
---|
| 447 | @id='chapter-temporary-tools'
|
---|
| 448 | ])">
|
---|
| 449 | <xsl:choose>
|
---|
| 450 | <xsl:when test="$pkgmngt='n'">
|
---|
| 451 | <xsl:choose>
|
---|
| 452 | <xsl:when test="contains(string(),'firmware,udev')">
|
---|
| 453 | <xsl:text>if [[ ! -d /lib/udev/devices ]] ; then
</xsl:text>
|
---|
| 454 | <xsl:apply-templates/>
|
---|
| 455 | <xsl:text>
fi
</xsl:text>
|
---|
| 456 | </xsl:when>
|
---|
| 457 | <xsl:otherwise>
|
---|
| 458 | <xsl:apply-templates/>
|
---|
| 459 | <xsl:text>
</xsl:text>
|
---|
| 460 | </xsl:otherwise>
|
---|
| 461 | </xsl:choose>
|
---|
| 462 | </xsl:when>
|
---|
[945ccaa] | 463 | <xsl:when test="$wrap-install='y'">
|
---|
| 464 | <xsl:choose>
|
---|
| 465 | <xsl:when test="./literal">
|
---|
| 466 | <xsl:call-template name="output-wrap">
|
---|
| 467 | <xsl:with-param name="commands" select="text()[1]"/>
|
---|
| 468 | </xsl:call-template>
|
---|
| 469 | <xsl:apply-templates select="literal"/>
|
---|
| 470 | <xsl:call-template name="output-wrap">
|
---|
| 471 | <xsl:with-param name="commands" select="text()[2]"/>
|
---|
| 472 | </xsl:call-template>
|
---|
| 473 | </xsl:when>
|
---|
| 474 | <xsl:otherwise>
|
---|
| 475 | <xsl:call-template name="output-wrap">
|
---|
| 476 | <xsl:with-param name="commands" select="string()"/>
|
---|
| 477 | </xsl:call-template>
|
---|
| 478 | </xsl:otherwise>
|
---|
| 479 | </xsl:choose>
|
---|
| 480 | <xsl:text>
</xsl:text>
|
---|
| 481 | </xsl:when>
|
---|
| 482 | <xsl:otherwise><!--pkgmngt = 'y' and wrap-install='n'-->
|
---|
[7072e1f] | 483 | <xsl:choose>
|
---|
| 484 | <xsl:when test="./literal">
|
---|
| 485 | <xsl:call-template name="outputpkgdest">
|
---|
[560bef1] | 486 | <xsl:with-param name="outputstring" select="text()[1]"/>
|
---|
[7072e1f] | 487 | </xsl:call-template>
|
---|
| 488 | <xsl:apply-templates select="literal"/>
|
---|
| 489 | <xsl:call-template name="outputpkgdest">
|
---|
[560bef1] | 490 | <xsl:with-param name="outputstring" select="text()[2]"/>
|
---|
[7072e1f] | 491 | </xsl:call-template>
|
---|
| 492 | </xsl:when>
|
---|
| 493 | <xsl:otherwise>
|
---|
| 494 | <xsl:call-template name="outputpkgdest">
|
---|
| 495 | <xsl:with-param name="outputstring" select="string()"/>
|
---|
| 496 | </xsl:call-template>
|
---|
| 497 | </xsl:otherwise>
|
---|
| 498 | </xsl:choose>
|
---|
[ad747ed] | 499 | <xsl:text>
</xsl:text>
|
---|
[7072e1f] | 500 | </xsl:otherwise>
|
---|
| 501 | </xsl:choose>
|
---|
[dc7fd7b] | 502 | </xsl:when> <!-- @remap='install' -->
|
---|
[57ef0c1] | 503 | <!-- if package management, we should make an independant package for
|
---|
| 504 | tzdata. -->
|
---|
| 505 | <xsl:when test="contains(string(),'tzdata') and $pkgmngt='y'">
|
---|
| 506 | <xsl:text>
|
---|
[945ccaa] | 507 | OLD_PKG_DEST="$PKG_DEST"
|
---|
[57ef0c1] | 508 | OLD_PKGDIR=$PKGDIR
|
---|
[56d8426] | 509 | PKG_DEST=$(dirname $OLD_PKG_DEST)/001-tzdata
|
---|
[57ef0c1] | 510 | PKGDIR=$(dirname $PKGDIR)/tzdata-</xsl:text>
|
---|
| 511 | <xsl:copy-of select="substring-before(
|
---|
| 512 | substring-after(string(),'tzdata'),
|
---|
| 513 | '.tar')"/>
|
---|
| 514 | <xsl:text>
|
---|
| 515 | </xsl:text>
|
---|
[945ccaa] | 516 | <xsl:choose>
|
---|
| 517 | <xsl:when test="$wrap-install='n'">
|
---|
| 518 | <xsl:copy-of select="substring-before(string(),'ZONEINFO=')"/>
|
---|
| 519 | <xsl:text>ZONEINFO=$PKG_DEST</xsl:text>
|
---|
| 520 | <xsl:copy-of select="substring-after(string(),'ZONEINFO=')"/>
|
---|
| 521 | <xsl:text>
|
---|
[9bbb9c8] | 522 | PREV_SEC=${SECONDS}
|
---|
[57ef0c1] | 523 | packInstall
|
---|
[9bbb9c8] | 524 | SECONDS=${PREV_SEC}
|
---|
[57ef0c1] | 525 | rm -rf $PKG_DEST
|
---|
[945ccaa] | 526 | </xsl:text>
|
---|
| 527 | </xsl:when>
|
---|
| 528 | <xsl:otherwise><!-- wrap-install='y' -->
|
---|
| 529 | <xsl:copy-of select="substring-before(string(),'ZONEINFO=')"/>
|
---|
| 530 | <xsl:text>
|
---|
| 531 | wrapInstall '
|
---|
| 532 | ZONEINFO=</xsl:text>
|
---|
| 533 | <xsl:copy-of select="substring-after(string(),'ZONEINFO=')"/>
|
---|
| 534 | <xsl:text>'
|
---|
[9bbb9c8] | 535 | PREV_SEC=${SECONDS}
|
---|
[945ccaa] | 536 | packInstall
|
---|
[9bbb9c8] | 537 | SECONDS=${PREV_SEC}
|
---|
[945ccaa] | 538 | </xsl:text>
|
---|
| 539 | </xsl:otherwise>
|
---|
| 540 | </xsl:choose>
|
---|
| 541 | <xsl:text>
|
---|
[57ef0c1] | 542 | PKG_DEST=$OLD_PKG_DEST
|
---|
| 543 | unset OLD_PKG_DEST
|
---|
| 544 | PKGDIR=$OLD_PKGDIR
|
---|
| 545 | unset OLD_PKGDIR
|
---|
| 546 | </xsl:text>
|
---|
| 547 | </xsl:when><!-- addition for tzdata + package management -->
|
---|
[7072e1f] | 548 | <!-- End addition for package management -->
|
---|
[fd691b4] | 549 | <!-- The rest of commands -->
|
---|
[1f025ca] | 550 | <xsl:otherwise>
|
---|
| 551 | <xsl:apply-templates/>
|
---|
[fd691b4] | 552 | <xsl:text>
</xsl:text>
|
---|
[1f025ca] | 553 | </xsl:otherwise>
|
---|
| 554 | </xsl:choose>
|
---|
| 555 | </xsl:template>
|
---|
[2e1c1c3] | 556 |
|
---|
[557fe91] | 557 | <xsl:template match="replaceable">
|
---|
[a41ce58] | 558 | <xsl:choose>
|
---|
[2a54650] | 559 | <xsl:when test="ancestor::sect1[@id='ch-system-glibc']">
|
---|
[877cc6a] | 560 | <xsl:value-of select="$timezone"/>
|
---|
[2a54650] | 561 | </xsl:when>
|
---|
[a41ce58] | 562 | <xsl:when test="ancestor::sect1[@id='ch-system-groff']">
|
---|
[877cc6a] | 563 | <xsl:value-of select="$page"/>
|
---|
[a41ce58] | 564 | </xsl:when>
|
---|
[81a7fb8] | 565 | <xsl:when test="contains(string(.),'<ll>_<CC>')">
|
---|
| 566 | <xsl:value-of select="$lang"/>
|
---|
| 567 | </xsl:when>
|
---|
[945ccaa] | 568 | <xsl:when test="contains(string(.),'Domain')">
|
---|
| 569 | <xsl:value-of select="$domain"/>
|
---|
| 570 | </xsl:when>
|
---|
| 571 | <xsl:when test="contains(string(.),'primary')">
|
---|
| 572 | <xsl:value-of select="$nameserver1"/>
|
---|
| 573 | </xsl:when>
|
---|
| 574 | <xsl:when test="contains(string(.),'secondary')">
|
---|
| 575 | <xsl:value-of select="$nameserver2"/>
|
---|
| 576 | </xsl:when>
|
---|
| 577 | <xsl:when test="contains(string(.),'192.168.1.1')">
|
---|
| 578 | <xsl:value-of select="$ip"/>
|
---|
| 579 | </xsl:when>
|
---|
| 580 | <xsl:when test="contains(string(.),'192.168.0.2')">
|
---|
| 581 | <xsl:value-of select="$ip"/>
|
---|
| 582 | </xsl:when>
|
---|
[f5e658d] | 583 | <xsl:when test="contains(string(.),'eth0')">
|
---|
| 584 | <xsl:value-of select="$interface"/>
|
---|
| 585 | </xsl:when>
|
---|
[945ccaa] | 586 | <!-- Only adapted to LFS-20170310 and later -->
|
---|
| 587 | <xsl:when test="contains(string(.),'HOSTNAME')">
|
---|
| 588 | <xsl:value-of select="$hostname"/>
|
---|
| 589 | </xsl:when>
|
---|
| 590 | <xsl:when test="contains(string(.),'FQDN')">
|
---|
| 591 | <xsl:value-of select="$hostname"/>
|
---|
| 592 | <xsl:text>.</xsl:text>
|
---|
| 593 | <xsl:value-of select="$domain"/>
|
---|
| 594 | </xsl:when>
|
---|
| 595 | <xsl:when test="contains(string(.),'alias')"/>
|
---|
| 596 | <xsl:when test="contains(string(.),'<lfs>')">
|
---|
| 597 | <xsl:value-of select="$hostname"/>
|
---|
| 598 | </xsl:when>
|
---|
[a41ce58] | 599 | <xsl:otherwise>
|
---|
| 600 | <xsl:text>**EDITME</xsl:text>
|
---|
| 601 | <xsl:apply-templates/>
|
---|
| 602 | <xsl:text>EDITME**</xsl:text>
|
---|
| 603 | </xsl:otherwise>
|
---|
| 604 | </xsl:choose>
|
---|
[557fe91] | 605 | </xsl:template>
|
---|
[2e1c1c3] | 606 |
|
---|
[945ccaa] | 607 | <xsl:template match="literal">
|
---|
| 608 | <xsl:choose>
|
---|
| 609 | <xsl:when test="contains(string(),'ONBOOT')">
|
---|
| 610 | <xsl:call-template name="outputnet">
|
---|
| 611 | <xsl:with-param name="netstring" select="string()"/>
|
---|
| 612 | </xsl:call-template>
|
---|
| 613 | </xsl:when>
|
---|
| 614 | <xsl:when test="contains(string(),'[Match]')">
|
---|
| 615 | <xsl:call-template name="outputsysdnet">
|
---|
| 616 | <xsl:with-param name="netstring" select="string()"/>
|
---|
| 617 | </xsl:call-template>
|
---|
| 618 | </xsl:when>
|
---|
[3b43e17b] | 619 | <xsl:when test="contains(string(),'0.0 0 0.0')">
|
---|
| 620 | <xsl:copy-of select="substring-before(string(),'LOCAL')"/>
|
---|
| 621 | <xsl:if test="$local='y'"><xsl:text>LOCAL</xsl:text></xsl:if>
|
---|
| 622 | <xsl:if test="$local='n'"><xsl:text>UTC</xsl:text></xsl:if>
|
---|
| 623 | </xsl:when>
|
---|
| 624 | <xsl:when test="contains(string(),'UTC=1')">
|
---|
| 625 | <xsl:copy-of select="substring-before(string(),'1')"/>
|
---|
| 626 | <xsl:if test="$local='y'"><xsl:text>0</xsl:text></xsl:if>
|
---|
| 627 | <xsl:if test="$local='n'"><xsl:text>1</xsl:text></xsl:if>
|
---|
| 628 | <xsl:copy-of select="substring-after(string(),'1')"/>
|
---|
| 629 | </xsl:when>
|
---|
| 630 | <xsl:when test="contains(string(),'bg_bds-')">
|
---|
| 631 | <xsl:call-template name="outputsysvconsole">
|
---|
| 632 | <xsl:with-param name="consolestring" select="string()"/>
|
---|
| 633 | </xsl:call-template>
|
---|
| 634 | </xsl:when>
|
---|
| 635 | <xsl:when test="contains(string(),'de-latin1')">
|
---|
| 636 | <xsl:call-template name="outputsysdconsole">
|
---|
| 637 | <xsl:with-param name="consolestring" select="string()"/>
|
---|
| 638 | </xsl:call-template>
|
---|
| 639 | </xsl:when>
|
---|
[945ccaa] | 640 | <xsl:otherwise>
|
---|
| 641 | <xsl:apply-templates/>
|
---|
| 642 | </xsl:otherwise>
|
---|
| 643 | </xsl:choose>
|
---|
| 644 | </xsl:template>
|
---|
| 645 |
|
---|
| 646 | <xsl:template name="outputnet">
|
---|
| 647 | <xsl:param name="netstring" select="''"/>
|
---|
| 648 | <!-- We suppose that book example has the following values:
|
---|
| 649 | - interface: eth0
|
---|
| 650 | - ip: 192.168.1.2
|
---|
| 651 | - gateway: 192.168.1.1
|
---|
| 652 | - prefix: 24
|
---|
| 653 | - broadcast: 192.168.1.255
|
---|
| 654 | Change below if book changes -->
|
---|
| 655 | <xsl:choose>
|
---|
| 656 | <xsl:when test="contains($netstring,'eth0')">
|
---|
| 657 | <xsl:call-template name="outputnet">
|
---|
| 658 | <xsl:with-param name="netstring"
|
---|
| 659 | select="substring-before($netstring,'eth0')"/>
|
---|
| 660 | </xsl:call-template>
|
---|
| 661 | <xsl:value-of select="$interface"/>
|
---|
| 662 | <xsl:call-template name="outputnet">
|
---|
| 663 | <xsl:with-param name="netstring"
|
---|
| 664 | select="substring-after($netstring,'eth0')"/>
|
---|
| 665 | </xsl:call-template>
|
---|
| 666 | </xsl:when>
|
---|
| 667 | <xsl:when test="contains($netstring,'192.168.1.1')">
|
---|
| 668 | <xsl:call-template name="outputnet">
|
---|
| 669 | <xsl:with-param name="netstring"
|
---|
| 670 | select="substring-before($netstring,'192.168.1.1')"/>
|
---|
| 671 | </xsl:call-template>
|
---|
| 672 | <xsl:value-of select="$gateway"/>
|
---|
| 673 | <xsl:call-template name="outputnet">
|
---|
| 674 | <xsl:with-param name="netstring"
|
---|
| 675 | select="substring-after($netstring,'192.168.1.1')"/>
|
---|
| 676 | </xsl:call-template>
|
---|
| 677 | </xsl:when>
|
---|
| 678 | <!-- must test this before the following, because 192.168.1.255 contains
|
---|
| 679 | 192.168.1.2! -->
|
---|
| 680 | <xsl:when test="contains($netstring,'192.168.1.255')">
|
---|
| 681 | <xsl:call-template name="outputnet">
|
---|
| 682 | <xsl:with-param name="netstring"
|
---|
| 683 | select="substring-before($netstring,'192.168.1.255')"/>
|
---|
| 684 | </xsl:call-template>
|
---|
| 685 | <xsl:value-of select="$broadcast"/>
|
---|
| 686 | <xsl:call-template name="outputnet">
|
---|
| 687 | <xsl:with-param name="netstring"
|
---|
| 688 | select="substring-after($netstring,'192.168.1.255')"/>
|
---|
| 689 | </xsl:call-template>
|
---|
| 690 | </xsl:when>
|
---|
| 691 | <xsl:when test="contains($netstring,'192.168.1.2')">
|
---|
| 692 | <xsl:call-template name="outputnet">
|
---|
| 693 | <xsl:with-param name="netstring"
|
---|
| 694 | select="substring-before($netstring,'192.168.1.2')"/>
|
---|
| 695 | </xsl:call-template>
|
---|
| 696 | <xsl:value-of select="$ip"/>
|
---|
| 697 | <xsl:call-template name="outputnet">
|
---|
| 698 | <xsl:with-param name="netstring"
|
---|
| 699 | select="substring-after($netstring,'192.168.1.2')"/>
|
---|
| 700 | </xsl:call-template>
|
---|
| 701 | </xsl:when>
|
---|
| 702 | <xsl:when test="contains($netstring,'24')">
|
---|
| 703 | <xsl:call-template name="outputnet">
|
---|
| 704 | <xsl:with-param name="netstring"
|
---|
| 705 | select="substring-before($netstring,'24')"/>
|
---|
| 706 | </xsl:call-template>
|
---|
| 707 | <xsl:value-of select="$prefix"/>
|
---|
| 708 | <xsl:call-template name="outputnet">
|
---|
| 709 | <xsl:with-param name="netstring"
|
---|
| 710 | select="substring-after($netstring,'24')"/>
|
---|
| 711 | </xsl:call-template>
|
---|
| 712 | </xsl:when>
|
---|
| 713 | <xsl:otherwise>
|
---|
| 714 | <xsl:value-of select="$netstring"/>
|
---|
| 715 | </xsl:otherwise>
|
---|
| 716 | </xsl:choose>
|
---|
| 717 | </xsl:template>
|
---|
| 718 |
|
---|
| 719 | <xsl:template name="outputsysdnet">
|
---|
| 720 | <xsl:param name="netstring" select="''"/>
|
---|
| 721 | <!-- We suppose that book example has the following values:
|
---|
[5af9ab4] | 722 | - interface: <network-device-name>
|
---|
[945ccaa] | 723 | - ip: 192.168.0.2
|
---|
| 724 | - gateway: 192.168.0.1
|
---|
| 725 | - prefix: 24
|
---|
| 726 | - DNS: 192.168.0.1
|
---|
| 727 | - Domain: <Your Domain Name>
|
---|
| 728 | and gateway comes before DNS. Change below if book changes -->
|
---|
| 729 | <xsl:choose>
|
---|
[5af9ab4] | 730 | <xsl:when test="contains($netstring,'<network-device-name>')">
|
---|
[945ccaa] | 731 | <xsl:call-template name="outputsysdnet">
|
---|
| 732 | <xsl:with-param name="netstring"
|
---|
[5af9ab4] | 733 | select="substring-before($netstring,'<network-device-name>')"/>
|
---|
[945ccaa] | 734 | </xsl:call-template>
|
---|
| 735 | <xsl:value-of select="$interface"/>
|
---|
| 736 | <xsl:call-template name="outputsysdnet">
|
---|
| 737 | <xsl:with-param name="netstring"
|
---|
[5af9ab4] | 738 | select="substring-after($netstring,'<network-device-name>')"/>
|
---|
[945ccaa] | 739 | </xsl:call-template>
|
---|
| 740 | </xsl:when>
|
---|
| 741 | <xsl:when test="contains($netstring,'192.168.0.1') and
|
---|
| 742 | contains($netstring,'Gateway')">
|
---|
| 743 | <xsl:call-template name="outputsysdnet">
|
---|
| 744 | <xsl:with-param name="netstring"
|
---|
| 745 | select="substring-before($netstring,'192.168.0.1')"/>
|
---|
| 746 | </xsl:call-template>
|
---|
| 747 | <xsl:value-of select="$gateway"/>
|
---|
| 748 | <xsl:call-template name="outputsysdnet">
|
---|
| 749 | <xsl:with-param name="netstring"
|
---|
| 750 | select="substring-after($netstring,'192.168.0.1')"/>
|
---|
| 751 | </xsl:call-template>
|
---|
| 752 | </xsl:when>
|
---|
| 753 | <xsl:when test="contains($netstring,'192.168.0.1') and
|
---|
| 754 | not(contains($netstring,'Gateway'))">
|
---|
| 755 | <xsl:call-template name="outputsysdnet">
|
---|
| 756 | <xsl:with-param name="netstring"
|
---|
| 757 | select="substring-before($netstring,'192.168.0.1')"/>
|
---|
| 758 | </xsl:call-template>
|
---|
| 759 | <xsl:value-of select="$nameserver1"/>
|
---|
| 760 | <xsl:text>
|
---|
| 761 | DNS=</xsl:text>
|
---|
| 762 | <xsl:value-of select="$nameserver2"/>
|
---|
| 763 | <xsl:call-template name="outputsysdnet">
|
---|
| 764 | <xsl:with-param name="netstring"
|
---|
| 765 | select="substring-after($netstring,'192.168.0.1')"/>
|
---|
| 766 | </xsl:call-template>
|
---|
| 767 | </xsl:when>
|
---|
| 768 | <xsl:when test="contains($netstring,'192.168.0.2')">
|
---|
| 769 | <xsl:call-template name="outputsysdnet">
|
---|
| 770 | <xsl:with-param name="netstring"
|
---|
| 771 | select="substring-before($netstring,'192.168.0.2')"/>
|
---|
| 772 | </xsl:call-template>
|
---|
| 773 | <xsl:value-of select="$ip"/>
|
---|
| 774 | <xsl:call-template name="outputsysdnet">
|
---|
| 775 | <xsl:with-param name="netstring"
|
---|
| 776 | select="substring-after($netstring,'192.168.0.2')"/>
|
---|
| 777 | </xsl:call-template>
|
---|
| 778 | </xsl:when>
|
---|
| 779 | <xsl:when test="contains($netstring,'24')">
|
---|
| 780 | <xsl:call-template name="outputsysdnet">
|
---|
| 781 | <xsl:with-param name="netstring"
|
---|
| 782 | select="substring-before($netstring,'24')"/>
|
---|
| 783 | </xsl:call-template>
|
---|
| 784 | <xsl:value-of select="$prefix"/>
|
---|
| 785 | <xsl:call-template name="outputsysdnet">
|
---|
| 786 | <xsl:with-param name="netstring"
|
---|
| 787 | select="substring-after($netstring,'24')"/>
|
---|
| 788 | </xsl:call-template>
|
---|
| 789 | </xsl:when>
|
---|
| 790 | <xsl:when test="contains($netstring,'<Your Domain Name>')">
|
---|
| 791 | <xsl:call-template name="outputsysdnet">
|
---|
| 792 | <xsl:with-param name="netstring"
|
---|
| 793 | select="substring-before($netstring,'<Your Domain Name>')"/>
|
---|
| 794 | </xsl:call-template>
|
---|
| 795 | <xsl:value-of select="$domain"/>
|
---|
| 796 | <xsl:call-template name="outputsysdnet">
|
---|
| 797 | <xsl:with-param name="netstring"
|
---|
| 798 | select="substring-after($netstring,'<Your Domain Name>')"/>
|
---|
| 799 | </xsl:call-template>
|
---|
| 800 | </xsl:when>
|
---|
| 801 | <xsl:otherwise>
|
---|
| 802 | <xsl:value-of select="$netstring"/>
|
---|
[3b43e17b] | 803 | </xsl:otherwise>
|
---|
| 804 | </xsl:choose>
|
---|
| 805 | </xsl:template>
|
---|
| 806 |
|
---|
| 807 | <xsl:template name="outputsysvconsole">
|
---|
| 808 | <!-- We suppose that book example has the following values:
|
---|
| 809 | - KEYMAP: bg_bds-utf8
|
---|
| 810 | - FONT: LatArCyrHeb-16
|
---|
| 811 | Change below if book changes -->
|
---|
| 812 | <xsl:param name="consolestring" select="''"/>
|
---|
| 813 | <xsl:choose>
|
---|
| 814 | <xsl:when test="contains($consolestring,'bg_bds-utf8')">
|
---|
| 815 | <xsl:call-template name="outputsysvconsole">
|
---|
| 816 | <xsl:with-param
|
---|
| 817 | name="consolestring"
|
---|
| 818 | select="substring-before($consolestring,'bg_bds-utf8')"/>
|
---|
| 819 | </xsl:call-template>
|
---|
| 820 | <xsl:value-of select="$keymap"/>
|
---|
| 821 | <xsl:call-template name="outputsysvconsole">
|
---|
| 822 | <xsl:with-param
|
---|
| 823 | name="consolestring"
|
---|
| 824 | select="substring-after($consolestring,'bg_bds-utf8')"/>
|
---|
| 825 | </xsl:call-template>
|
---|
| 826 | </xsl:when>
|
---|
| 827 | <xsl:when test="contains($consolestring,'LatArCyrHeb-16')">
|
---|
| 828 | <xsl:call-template name="outputsysvconsole">
|
---|
| 829 | <xsl:with-param
|
---|
| 830 | name="consolestring"
|
---|
| 831 | select="substring-before($consolestring,'LatArCyrHeb-16')"/>
|
---|
| 832 | </xsl:call-template>
|
---|
| 833 | <xsl:value-of select="$font"/>
|
---|
| 834 | <xsl:text>"
|
---|
[3142368] | 835 | LOGLEVEL="</xsl:text>
|
---|
[3b43e17b] | 836 | <xsl:copy-of select="$log-level"/>
|
---|
| 837 | <xsl:call-template name="outputsysvconsole">
|
---|
| 838 | <xsl:with-param
|
---|
| 839 | name="consolestring"
|
---|
| 840 | select="substring-after($consolestring,'LatArCyrHeb-16')"/>
|
---|
| 841 | </xsl:call-template>
|
---|
| 842 | </xsl:when>
|
---|
| 843 | <xsl:otherwise>
|
---|
| 844 | <xsl:copy-of select="$consolestring"/>
|
---|
| 845 | </xsl:otherwise>
|
---|
| 846 | </xsl:choose>
|
---|
| 847 | </xsl:template>
|
---|
| 848 |
|
---|
| 849 | <xsl:template name="outputsysdconsole">
|
---|
| 850 | <!-- We suppose that book example has the following values:
|
---|
| 851 | - KEYMAP: de-latin1
|
---|
| 852 | - FONT: Lat2-Terminus16
|
---|
| 853 | Change below if book changes -->
|
---|
| 854 | <xsl:param name="consolestring" select="''"/>
|
---|
| 855 | <xsl:choose>
|
---|
| 856 | <xsl:when test="contains($consolestring,'de-latin1')">
|
---|
| 857 | <xsl:call-template name="outputsysdconsole">
|
---|
| 858 | <xsl:with-param
|
---|
| 859 | name="consolestring"
|
---|
| 860 | select="substring-before($consolestring,'de-latin1')"/>
|
---|
| 861 | </xsl:call-template>
|
---|
| 862 | <xsl:value-of select="$keymap"/>
|
---|
| 863 | <xsl:call-template name="outputsysdconsole">
|
---|
| 864 | <xsl:with-param
|
---|
| 865 | name="consolestring"
|
---|
| 866 | select="substring-after($consolestring,'de-latin1')"/>
|
---|
| 867 | </xsl:call-template>
|
---|
| 868 | </xsl:when>
|
---|
| 869 | <xsl:when test="contains($consolestring,'Lat2-Terminus16')">
|
---|
| 870 | <xsl:call-template name="outputsysdconsole">
|
---|
| 871 | <xsl:with-param
|
---|
| 872 | name="consolestring"
|
---|
| 873 | select="substring-before($consolestring,'Lat2-Terminus16')"/>
|
---|
| 874 | </xsl:call-template>
|
---|
| 875 | <xsl:value-of select="$font"/>
|
---|
| 876 | <xsl:call-template name="outputsysdconsole">
|
---|
| 877 | <xsl:with-param
|
---|
| 878 | name="consolestring"
|
---|
| 879 | select="substring-after($consolestring,'Lat2-Terminus16')"/>
|
---|
| 880 | </xsl:call-template>
|
---|
| 881 | </xsl:when>
|
---|
| 882 | <xsl:otherwise>
|
---|
| 883 | <xsl:copy-of select="$consolestring"/>
|
---|
[945ccaa] | 884 | </xsl:otherwise>
|
---|
| 885 | </xsl:choose>
|
---|
| 886 | </xsl:template>
|
---|
| 887 |
|
---|
[7072e1f] | 888 | <xsl:template name="outputpkgdest">
|
---|
| 889 | <xsl:param name="outputstring" select="foo"/>
|
---|
| 890 | <xsl:choose>
|
---|
| 891 | <xsl:when test="contains($outputstring,'make ')">
|
---|
| 892 | <xsl:choose>
|
---|
| 893 | <xsl:when test="not(starts-with($outputstring,'make'))">
|
---|
| 894 | <xsl:call-template name="outputpkgdest">
|
---|
| 895 | <xsl:with-param name="outputstring"
|
---|
| 896 | select="substring-before($outputstring,'make')"/>
|
---|
| 897 | </xsl:call-template>
|
---|
| 898 | <xsl:call-template name="outputpkgdest">
|
---|
| 899 | <xsl:with-param
|
---|
| 900 | name="outputstring"
|
---|
| 901 | select="substring-after($outputstring,
|
---|
| 902 | substring-before($outputstring,'make'))"/>
|
---|
| 903 | </xsl:call-template>
|
---|
| 904 | </xsl:when>
|
---|
| 905 | <xsl:otherwise>
|
---|
| 906 | <xsl:choose>
|
---|
| 907 | <!-- special cases (no DESTDIR) here -->
|
---|
| 908 | <xsl:when test="ancestor::sect1[@id='ch-system-glibc']">
|
---|
| 909 | <xsl:text>make install_root=$PKG_DEST -j1</xsl:text>
|
---|
| 910 | <xsl:value-of
|
---|
| 911 | select="substring-before(substring-after(string(),'make'),
|
---|
| 912 | 'install')"/>
|
---|
| 913 | <xsl:text>install
</xsl:text>
|
---|
| 914 | </xsl:when>
|
---|
| 915 | <xsl:when test="ancestor::sect1[@id='ch-system-bzip2']">
|
---|
| 916 | <xsl:text>make PREFIX=$PKG_DEST/usr install
</xsl:text>
|
---|
| 917 | </xsl:when>
|
---|
| 918 | <xsl:when test="ancestor::sect1[@id='ch-system-sysklogd']">
|
---|
| 919 | <xsl:text>make BINDIR=$PKG_DEST/sbin prefix=$PKG_DEST install
</xsl:text>
|
---|
| 920 | </xsl:when>
|
---|
| 921 | <xsl:when test="ancestor::sect1[@id='ch-system-iproute2']">
|
---|
[b1f4a8d] | 922 | <xsl:text>make DESTDIR=$PKG_DEST DOCDIR=</xsl:text>
|
---|
[7072e1f] | 923 | <xsl:value-of
|
---|
[b1f4a8d] | 924 | select="substring-before(substring-after(string(),'DOCDIR='),
|
---|
[7072e1f] | 925 | 'install')"/>
|
---|
| 926 | <xsl:text>install
</xsl:text>
|
---|
| 927 | </xsl:when>
|
---|
| 928 | <xsl:when test="ancestor::sect1[@id='ch-system-sysvinit']">
|
---|
| 929 | <xsl:text>make ROOT=$PKG_DEST</xsl:text>
|
---|
| 930 | <xsl:value-of
|
---|
| 931 | select="substring-before(substring-after(string(),'make'),
|
---|
| 932 | 'install')"/>
|
---|
| 933 | <xsl:text>install
</xsl:text>
|
---|
| 934 | </xsl:when>
|
---|
| 935 | <xsl:when test="ancestor::sect1[@id='ch-bootable-kernel']">
|
---|
| 936 | <xsl:text>make INSTALL_MOD_PATH=$PKG_DEST</xsl:text>
|
---|
| 937 | <xsl:value-of
|
---|
| 938 | select="substring-before(substring-after(string(),'make'),
|
---|
| 939 | 'install')"/>
|
---|
| 940 | <xsl:text>install
</xsl:text>
|
---|
| 941 | </xsl:when>
|
---|
| 942 | <xsl:otherwise>
|
---|
[560bef1] | 943 | <xsl:text>make DESTDIR=$PKG_DEST</xsl:text>
|
---|
[e6e0c85] | 944 | <xsl:call-template name="outputpkgdest">
|
---|
[560bef1] | 945 | <xsl:with-param
|
---|
[7072e1f] | 946 | name="outputstring"
|
---|
| 947 | select="substring-after($outputstring,'make')"/>
|
---|
[560bef1] | 948 | </xsl:call-template>
|
---|
[7072e1f] | 949 | </xsl:otherwise>
|
---|
| 950 | </xsl:choose>
|
---|
| 951 | </xsl:otherwise>
|
---|
| 952 | </xsl:choose>
|
---|
| 953 | </xsl:when>
|
---|
[1cb4c76] | 954 | <xsl:when test="contains($outputstring,'ninja install')">
|
---|
[4696ddd] | 955 | <xsl:choose>
|
---|
[1cb4c76] | 956 | <xsl:when test="not(starts-with($outputstring,'ninja install'))">
|
---|
[4696ddd] | 957 | <xsl:call-template name="outputpkgdest">
|
---|
| 958 | <xsl:with-param name="outputstring"
|
---|
[1cb4c76] | 959 | select="substring-before($outputstring,'ninja install')"/>
|
---|
[4696ddd] | 960 | </xsl:call-template>
|
---|
| 961 | <xsl:call-template name="outputpkgdest">
|
---|
| 962 | <xsl:with-param
|
---|
| 963 | name="outputstring"
|
---|
| 964 | select="substring-after($outputstring,
|
---|
[1cb4c76] | 965 | substring-before($outputstring,'ninja install'))"/>
|
---|
[4696ddd] | 966 | </xsl:call-template>
|
---|
| 967 | </xsl:when>
|
---|
[1cb4c76] | 968 | <xsl:otherwise> <!-- "ninja" is the first word and is followed by
|
---|
| 969 | "install"-->
|
---|
[4696ddd] | 970 | <xsl:text>DESTDIR=$PKG_DEST ninja</xsl:text>
|
---|
| 971 | <xsl:call-template name="outputpkgdest">
|
---|
| 972 | <xsl:with-param
|
---|
| 973 | name="outputstring"
|
---|
| 974 | select="substring-after($outputstring,'ninja')"/>
|
---|
| 975 | </xsl:call-template>
|
---|
| 976 | </xsl:otherwise>
|
---|
| 977 | </xsl:choose>
|
---|
| 978 | </xsl:when>
|
---|
| 979 | <xsl:otherwise> <!-- no make nor ninja in this string -->
|
---|
[7072e1f] | 980 | <xsl:choose>
|
---|
| 981 | <xsl:when test="contains($outputstring,'>/') and
|
---|
| 982 | not(contains(substring-before($outputstring,'>/'),' /'))">
|
---|
| 983 | <xsl:value-of select="substring-before($outputstring,'>/')"/>
|
---|
| 984 | <xsl:text>>$PKG_DEST/</xsl:text>
|
---|
| 985 | <xsl:call-template name="outputpkgdest">
|
---|
| 986 | <xsl:with-param name="outputstring" select="substring-after($outputstring,'>/')"/>
|
---|
| 987 | </xsl:call-template>
|
---|
| 988 | </xsl:when>
|
---|
| 989 | <xsl:when test="contains($outputstring,' /')">
|
---|
| 990 | <xsl:value-of select="substring-before($outputstring,' /')"/>
|
---|
| 991 | <xsl:text> $PKG_DEST/</xsl:text>
|
---|
| 992 | <xsl:call-template name="outputpkgdest">
|
---|
| 993 | <xsl:with-param name="outputstring" select="substring-after($outputstring,' /')"/>
|
---|
| 994 | </xsl:call-template>
|
---|
| 995 | </xsl:when>
|
---|
| 996 | <xsl:otherwise>
|
---|
| 997 | <xsl:value-of select="$outputstring"/>
|
---|
| 998 | </xsl:otherwise>
|
---|
| 999 | </xsl:choose>
|
---|
| 1000 | </xsl:otherwise>
|
---|
| 1001 | </xsl:choose>
|
---|
| 1002 | </xsl:template>
|
---|
[945ccaa] | 1003 |
|
---|
| 1004 | <xsl:variable name="APOS">'</xsl:variable>
|
---|
| 1005 | <xsl:template name="output-wrap">
|
---|
| 1006 | <xsl:param name="commands" select="''"/>
|
---|
| 1007 | <xsl:choose>
|
---|
| 1008 | <xsl:when test="contains($commands,string($APOS))">
|
---|
| 1009 | <xsl:call-template name="output-wrap">
|
---|
| 1010 | <xsl:with-param name="commands"
|
---|
| 1011 | select="substring-before($commands,string($APOS))"/>
|
---|
| 1012 | </xsl:call-template>
|
---|
| 1013 | <xsl:text>'\''</xsl:text>
|
---|
| 1014 | <xsl:call-template name="output-wrap">
|
---|
| 1015 | <xsl:with-param name="commands"
|
---|
| 1016 | select="substring-after($commands,string($APOS))"/>
|
---|
| 1017 | </xsl:call-template>
|
---|
| 1018 | </xsl:when>
|
---|
| 1019 | <xsl:otherwise>
|
---|
| 1020 | <xsl:value-of select="$commands"/>
|
---|
| 1021 | </xsl:otherwise>
|
---|
| 1022 | </xsl:choose>
|
---|
| 1023 | </xsl:template>
|
---|
| 1024 |
|
---|
[dc7fd7b] | 1025 | <xsl:template name="comment-strip">
|
---|
| 1026 | <xsl:param name="instructions" select="''"/>
|
---|
| 1027 | <xsl:choose>
|
---|
| 1028 | <xsl:when test="contains($instructions,'
')">
|
---|
| 1029 | <xsl:call-template name="comment-strip">
|
---|
| 1030 | <xsl:with-param name="instructions"
|
---|
| 1031 | select="substring-before($instructions,'
')"/>
|
---|
| 1032 | </xsl:call-template>
|
---|
| 1033 | <xsl:call-template name="comment-strip">
|
---|
| 1034 | <xsl:with-param name="instructions"
|
---|
| 1035 | select="substring-after($instructions,'
')"/>
|
---|
| 1036 | </xsl:call-template>
|
---|
| 1037 | </xsl:when>
|
---|
| 1038 | <xsl:when test="contains($instructions,'\*.la')">
|
---|
| 1039 | <xsl:if test="$del-la-files='n'">
|
---|
| 1040 | <xsl:text># </xsl:text>
|
---|
| 1041 | </xsl:if>
|
---|
| 1042 | <xsl:value-of select="$instructions"/>
|
---|
| 1043 | <xsl:text>
</xsl:text>
|
---|
| 1044 | </xsl:when>
|
---|
| 1045 | <xsl:when test="contains($instructions,'strip ')">
|
---|
| 1046 | <xsl:if test="$strip='n'">
|
---|
| 1047 | <xsl:text># </xsl:text>
|
---|
| 1048 | </xsl:if>
|
---|
| 1049 | <xsl:value-of select="$instructions"/>
|
---|
| 1050 | <xsl:text> || true
</xsl:text>
|
---|
| 1051 | </xsl:when>
|
---|
| 1052 | <xsl:otherwise>
|
---|
| 1053 | <xsl:value-of select="$instructions"/>
|
---|
| 1054 | <xsl:text>
</xsl:text>
|
---|
| 1055 | </xsl:otherwise>
|
---|
| 1056 | </xsl:choose>
|
---|
| 1057 | </xsl:template>
|
---|
| 1058 |
|
---|
[5a8939e] | 1059 | <xsl:template name="comment-test">
|
---|
| 1060 | <xsl:param name="instructions" select="''"/>
|
---|
| 1061 | <xsl:choose>
|
---|
| 1062 | <xsl:when test="contains($instructions,'
')">
|
---|
| 1063 | <xsl:call-template name="comment-test">
|
---|
| 1064 | <xsl:with-param name="instructions"
|
---|
| 1065 | select="substring-before($instructions,'
')"/>
|
---|
| 1066 | </xsl:call-template>
|
---|
| 1067 | <xsl:call-template name="comment-test">
|
---|
| 1068 | <xsl:with-param name="instructions"
|
---|
| 1069 | select="substring-after($instructions,'
')"/>
|
---|
| 1070 | </xsl:call-template>
|
---|
| 1071 | </xsl:when>
|
---|
| 1072 | <xsl:otherwise>
|
---|
| 1073 | <xsl:if test="$testsuite = '0' or
|
---|
| 1074 | $testsuite = '1' and
|
---|
| 1075 | not(ancestor::sect1[@id='ch-system-gcc']) and
|
---|
| 1076 | not(ancestor::sect1[@id='ch-system-glibc']) and
|
---|
| 1077 | not(ancestor::sect1[@id='ch-system-gmp']) and
|
---|
| 1078 | not(ancestor::sect1[@id='ch-system-mpfr']) and
|
---|
| 1079 | not(ancestor::sect1[@id='ch-system-binutils']) or
|
---|
| 1080 | $testsuite = '2' and
|
---|
| 1081 | ancestor::chapter[@id='chapter-temporary-tools']">
|
---|
| 1082 | <xsl:text># </xsl:text>
|
---|
| 1083 | </xsl:if>
|
---|
| 1084 | <xsl:choose>
|
---|
| 1085 | <xsl:when test="$bomb-testsuite = 'n'">
|
---|
| 1086 | <xsl:choose>
|
---|
| 1087 | <xsl:when test="contains(string(), 'make -k')">
|
---|
| 1088 | <xsl:value-of select="$instructions"/>
|
---|
| 1089 | <xsl:text> >> $TEST_LOG 2>&1 || true
</xsl:text>
|
---|
| 1090 | </xsl:when>
|
---|
| 1091 | <xsl:when test="contains($instructions, 'make')">
|
---|
| 1092 | <xsl:value-of select="substring-before($instructions, 'make')"/>
|
---|
| 1093 | <xsl:text>make -k</xsl:text>
|
---|
| 1094 | <xsl:value-of select="substring-after($instructions, 'make')"/>
|
---|
| 1095 | <xsl:text> >> $TEST_LOG 2>&1 || true
</xsl:text>
|
---|
| 1096 | </xsl:when>
|
---|
| 1097 | <xsl:otherwise>
|
---|
| 1098 | <xsl:value-of select="$instructions"/>
|
---|
[764a5d7] | 1099 | <xsl:if
|
---|
| 1100 | test="not(contains($instructions, '>>')) and
|
---|
| 1101 | substring($instructions,
|
---|
| 1102 | string-length($instructions)) != '\'">
|
---|
[5a8939e] | 1103 | <xsl:text> >> $TEST_LOG 2>&1</xsl:text>
|
---|
| 1104 | </xsl:if>
|
---|
| 1105 | <xsl:text>
</xsl:text>
|
---|
| 1106 | </xsl:otherwise>
|
---|
| 1107 | </xsl:choose>
|
---|
| 1108 | </xsl:when>
|
---|
| 1109 | <xsl:otherwise>
|
---|
| 1110 | <!-- bomb-testsuite != 'n'-->
|
---|
| 1111 | <xsl:choose>
|
---|
| 1112 | <xsl:when test="contains($instructions, 'make -k')">
|
---|
| 1113 | <xsl:value-of select="$instructions"/>
|
---|
| 1114 | <xsl:text> >> $TEST_LOG 2>&1 || true
</xsl:text>
|
---|
| 1115 | </xsl:when>
|
---|
| 1116 | <xsl:otherwise>
|
---|
| 1117 | <xsl:value-of select="$instructions"/>
|
---|
[764a5d7] | 1118 | <xsl:if test="not(contains($instructions, '>>')) and
|
---|
| 1119 | substring($instructions,
|
---|
| 1120 | string-length($instructions)) != '\'">
|
---|
[5a8939e] | 1121 | <xsl:text> >> $TEST_LOG 2>&1</xsl:text>
|
---|
| 1122 | </xsl:if>
|
---|
| 1123 | <xsl:text>
</xsl:text>
|
---|
| 1124 | </xsl:otherwise>
|
---|
| 1125 | </xsl:choose>
|
---|
| 1126 | </xsl:otherwise> <!-- end not bomb-test=n -->
|
---|
| 1127 | </xsl:choose>
|
---|
| 1128 | </xsl:otherwise>
|
---|
| 1129 | </xsl:choose>
|
---|
| 1130 | </xsl:template>
|
---|
| 1131 |
|
---|
[2758d94] | 1132 | <xsl:template name="basename">
|
---|
| 1133 | <xsl:param name="path" select="''"/>
|
---|
| 1134 | <xsl:choose>
|
---|
| 1135 | <xsl:when test="contains($path,'/') and substring-after($path,'/')!=''">
|
---|
| 1136 | <xsl:call-template name="basename">
|
---|
| 1137 | <xsl:with-param name="path" select="substring-after($path,'/')"/>
|
---|
| 1138 | </xsl:call-template>
|
---|
| 1139 | </xsl:when>
|
---|
| 1140 | <xsl:when test="contains($path,'/') and substring-after($path,'/')=''">
|
---|
| 1141 | <xsl:value-of select="substring-before($path,'/')"/>
|
---|
| 1142 | </xsl:when>
|
---|
| 1143 | <xsl:otherwise>
|
---|
| 1144 | <xsl:value-of select="$path"/>
|
---|
| 1145 | </xsl:otherwise>
|
---|
| 1146 | </xsl:choose>
|
---|
| 1147 | </xsl:template>
|
---|
| 1148 |
|
---|
| 1149 | <xsl:template name="start-script">
|
---|
| 1150 | <xsl:param name="order" select="'073'"/>
|
---|
| 1151 | <xsl:text>
|
---|
[5451eae] | 1152 | <!-- save the timer, so that unpacking, and du is not counted -->
|
---|
| 1153 | PREV_SEC=${SECONDS}
|
---|
| 1154 | <!-- get the location of the system root -->
|
---|
[1dce189] | 1155 | ROOT=</xsl:text>
|
---|
| 1156 | <xsl:choose>
|
---|
[123105f] | 1157 | <xsl:when test="starts-with(./@id, 'ch-tools') or
|
---|
| 1158 | contains (./@id, 'kernfs')">
|
---|
[1dce189] | 1159 | <xsl:text>$LFS/
|
---|
| 1160 | </xsl:text>
|
---|
| 1161 | </xsl:when>
|
---|
| 1162 | <xsl:otherwise>
|
---|
| 1163 | <xsl:text>/
|
---|
| 1164 | </xsl:text>
|
---|
| 1165 | </xsl:otherwise>
|
---|
| 1166 | </xsl:choose>
|
---|
| 1167 | <xsl:text>
|
---|
[5451eae] | 1168 | SCRIPT_ROOT=</xsl:text>
|
---|
| 1169 | <xsl:copy-of select="$script-root"/>
|
---|
| 1170 | <xsl:text>
|
---|
| 1171 | </xsl:text>
|
---|
| 1172 | <xsl:if test="sect2[@role='installation']">
|
---|
| 1173 | <xsl:text>
|
---|
[2758d94] | 1174 | SRC_DIR=${ROOT}sources
|
---|
| 1175 | <!-- Set variables, for use by the Makefile and package manager -->
|
---|
| 1176 | VERSION=</xsl:text><!-- needed for Makefile, and may be used in PackInstall-->
|
---|
[5451eae] | 1177 | <xsl:copy-of select=".//sect1info/productnumber/text()"/>
|
---|
| 1178 | <xsl:text>
|
---|
[2758d94] | 1179 | PKG_DEST=${SRC_DIR}/</xsl:text>
|
---|
[5451eae] | 1180 | <xsl:copy-of select="$order"/>
|
---|
| 1181 | <xsl:text>-</xsl:text>
|
---|
| 1182 | <xsl:copy-of select=".//sect1info/productname/text()"/>
|
---|
| 1183 | <xsl:text>
|
---|
| 1184 | <!-- Get the tarball name from sect1info -->
|
---|
[2758d94] | 1185 | PACKAGE=</xsl:text>
|
---|
[5451eae] | 1186 | <xsl:call-template name="basename">
|
---|
| 1187 | <xsl:with-param name="path" select=".//sect1info/address/text()"/>
|
---|
| 1188 | </xsl:call-template>
|
---|
| 1189 | <xsl:if test = "( ../@id != 'chapter-temporary-tools' or
|
---|
[2758d94] | 1190 | starts-with(@id,'ch-system') ) and $pkgmngt = 'y'">
|
---|
[5451eae] | 1191 | <xsl:text>
|
---|
[2758d94] | 1192 | source ${ROOT}${SCRIPT_ROOT}/packInstall.sh
|
---|
| 1193 | export -f packInstall</xsl:text>
|
---|
[5451eae] | 1194 | <xsl:if test="$wrap-install='y'">
|
---|
| 1195 | <xsl:text>
|
---|
[2758d94] | 1196 | export -f wrapInstall
|
---|
| 1197 | </xsl:text>
|
---|
[5451eae] | 1198 | </xsl:if>
|
---|
[2758d94] | 1199 | </xsl:if>
|
---|
| 1200 | <!-- Get the build directory name and clean remnants of previous attempts -->
|
---|
[5451eae] | 1201 | <xsl:text>
|
---|
[2758d94] | 1202 | cd $SRC_DIR
|
---|
| 1203 | PKGDIR=$(tar -tf $PACKAGE | head -n1 | sed 's@^./@@;s@/.*@@')
|
---|
| 1204 | export PKGDIR VERSION PKG_DEST
|
---|
| 1205 |
|
---|
| 1206 | if [ -d "$PKGDIR" ]; then rm -rf $PKGDIR; fi
|
---|
| 1207 | if [ -d "${PKGDIR%-*}-build" ]; then rm -rf ${PKGDIR%-*}-build; fi
|
---|
[5451eae] | 1208 | </xsl:text>
|
---|
| 1209 | </xsl:if>
|
---|
| 1210 | <xsl:text>
|
---|
| 1211 | echo "KB: $(du -skx --exclude=lost+found --exclude=var/lib --exclude=$SCRIPT_ROOT $ROOT)"
|
---|
| 1212 | </xsl:text>
|
---|
| 1213 | <xsl:if test="sect2[@role='installation']">
|
---|
| 1214 | <xsl:text>
|
---|
[2758d94] | 1215 | <!-- At last unpack and change directory -->
|
---|
| 1216 | tar -xf $PACKAGE
|
---|
| 1217 | cd $PKGDIR
|
---|
[5451eae] | 1218 | </xsl:text>
|
---|
| 1219 | </xsl:if>
|
---|
| 1220 | <xsl:text>SECONDS=${PREV_SEC}
|
---|
[2758d94] | 1221 |
|
---|
| 1222 | # Start of LFS book script
|
---|
| 1223 | </xsl:text>
|
---|
| 1224 | </xsl:template>
|
---|
| 1225 |
|
---|
| 1226 | <xsl:template name="end-script">
|
---|
| 1227 | <xsl:text>
|
---|
| 1228 | # End of LFS book script
|
---|
| 1229 |
|
---|
[5451eae] | 1230 | echo "KB: $(du -skx --exclude=lost+found --exclude=var/lib --exclude=$SCRIPT_ROOT $ROOT)"
|
---|
| 1231 | </xsl:text>
|
---|
| 1232 | <xsl:if test="sect2[@role='installation']">
|
---|
| 1233 | <xsl:text>cd $SRC_DIR
|
---|
[2758d94] | 1234 | rm -rf $PKGDIR
|
---|
| 1235 | if [ -d "${PKGDIR%-*}-build" ]; then rm -rf ${PKGDIR%-*}-build; fi
|
---|
| 1236 | </xsl:text>
|
---|
[5451eae] | 1237 | </xsl:if>
|
---|
[2758d94] | 1238 | </xsl:template>
|
---|
| 1239 |
|
---|
[557fe91] | 1240 | </xsl:stylesheet>
|
---|