Changeset 582feec for HLFS/hlfs.xsl


Ignore:
Timestamp:
03/18/2006 01:53:37 PM (19 years ago)
Author:
Manuel Canales Esparcia <manuel@…>
Branches:
experimental
Children:
0ac273e
Parents:
5c5a010
Message:

Fixed remainig issues in uClibc script generation.
Fixed the chapter6_Makefile code.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • HLFS/hlfs.xsl

    r5c5a010 r582feec  
    107107             <xsl:text>pushd ../; tar -xvf blfs-bootscripts-&blfs-bootscripts-version;.* ; popd; &#xA;</xsl:text>
    108108          </xsl:if>
     109        </xsl:if>
     110        <xsl:if test="@id='ch-system-kernfs'">
     111          <xsl:text>export HLFS=$LFS&#xA;</xsl:text>
    109112        </xsl:if>
    110113        <xsl:apply-templates select=".//para/userinput | .//screen"/>
     
    187190        <xsl:text>cp -v /sources/kernel-config .config&#xA;</xsl:text>
    188191      </xsl:when>
     192      <!-- No interactive commands are allowed -->
     193      <xsl:when test="string() = 'make menuconfig'">
     194        <xsl:text>make oldconfig&#xA;</xsl:text>
     195      </xsl:when>
     196      <!-- For uClibc we need to cd to the Gettext package -->
     197      <xsl:when test="contains(string(),'cd gettext-runtime/')">
     198        <xsl:text>cd ../gettext-*/gettext-runtime</xsl:text>
     199        <xsl:value-of select="substring-after(string(),'gettext-runtime')"/>
     200        <xsl:text>&#xA;</xsl:text>
     201      </xsl:when>
     202      <!-- For uClibc we need to set TIMEZONE envar -->
     203      <xsl:when test="contains(string(),'EST5EDT')">
     204        <xsl:value-of select="substring-before(string(),'EST5EDT')"/>
     205        <xsl:text>${TIMEZONE}</xsl:text>
     206        <xsl:value-of select="substring-after(string(),'EST5EDT')"/>
     207        <xsl:text>&#xA;</xsl:text>
     208      </xsl:when>
    189209      <!-- The Coreutils and Module-Init-Tools test suites are optional -->
    190210      <xsl:when test="($testsuite = '0' or $testsuite = '1') and
     
    194214                contains(string(),'distclean') or
    195215                contains(string(),'dummy'))"/>
    196       <!-- For uClibc we need to cd to the Gettext package -->
    197       <xsl:when test="contains(string(),'cd gettext-runtime/')">
    198         <xsl:text>cd ../gettext-*/gettext-runtime</xsl:text>
    199         <xsl:value-of select="substring-after(string(),'gettext-runtime')"/>
    200         <xsl:text>&#xA;</xsl:text>
    201       </xsl:when>
    202216      <!-- Fixing toolchain test suites run -->
    203217      <xsl:when test="string() = 'make check' or
Note: See TracChangeset for help on using the changeset viewer.