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