Changeset 9436828


Ignore:
Timestamp:
07/24/2007 07:22:46 PM (17 years ago)
Author:
Manuel Canales Esparcia <manuel@…>
Branches:
2.3, 2.3.x, 2.4, ablfs, ablfs-more, legacy, new_features, trunk
Children:
cf829f0
Parents:
5120fdc
Message:

CLFS3: Fixed endian setting in uClibc configuration.

Files:
3 edited

Legend:

Unmodified
Added
Removed
  • CLFS3/clfs3.xsl

    r5120fdc r9436828  
    1313
    1414<!-- XSLT stylesheet to create shell scripts from CLFS2 books. -->
     15
     16  <!-- Endian level -->
     17  <xsl:param name="endian" select="xbig"/>
    1518
    1619  <!-- Time zone -->
     
    98101        <xsl:text>&#xA;</xsl:text>
    99102      </xsl:when>
     103      <!-- Select Endian level for uClibc -->
     104      <xsl:when test="$endian='xbig' and contains(string(),'LITTLE_ENDIAN')"/>
     105      <xsl:when test="$endian='xlittle' and contains(string(),'BIG_ENDIAN')"/>
    100106      <!-- Setting $LANG for /etc/profile -->
    101107      <xsl:when test="ancestor::sect1[@id='ch-scripts-profile'] and
  • Config.in

    r5120fdc r9436828  
    319319                default "-mabi=n32"     if ABI_N32
    320320                default "-mabi=64"      if ABI_64
     321
     322        config  ENDIAN
     323                string
     324                depends BOOK_CLFS3 && (ARCH_MIPS || ARCH_ARM)
     325                default "little"        if PROC_mipsel || PROC_ARM || PROC_ARM5L
     326                default "big"           if PROC_mips || PROC_ARM5B
    321327
    322328        choice
  • common/libs/func_book_parser

    r5120fdc r9436828  
    112112        xsltproc --nonet \
    113113                 --xinclude \
     114                 --stringparam endian x$ENDIAN \
    114115                 --stringparam timezone $TIMEZONE \
    115116                 --stringparam page $PAGE \
Note: See TracChangeset for help on using the changeset viewer.