Changeset 32f55264 for BOOK/final-system


Ignore:
Timestamp:
May 23, 2011, 2:55:11 PM (13 years ago)
Author:
Joe Ciccone <jciccone@…>
Children:
0230c0a
Parents:
8f3d17f (diff), 1ac2d0c (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merge branch 'master' into simp

Location:
BOOK/final-system
Files:
4 added
20 edited

Legend:

Unmodified
Added
Removed
  • BOOK/final-system/alpha-chapter.xml

    r8f3d17f r32f55264  
    3030  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/sed.xml"/>
    3131  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/ncurses.xml"/>
     32  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/glib.xml"/>
    3233  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/pkg-config.xml"/>
    3334  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/util-linux.xml"/>
  • BOOK/final-system/common/kbd.xml

    r8f3d17f r32f55264  
    2626    <title>Installation of Kbd</title>
    2727
     28    <para os="p1">Apply the following patch to fix a typo in es.po:</para>
     29
     30    <screen os="p2"><userinput>patch -Np1 -i ../&kbd-espo-patch;</userinput></screen>
     31
    2832    <para os="a">Prepare Kbd for compilation:</para>
    2933
     
    4549    stages of booting, those binaries need to be on the root partition:</para>
    4650
    47 <screen os="i"><userinput>mv -v /usr/bin/{kbd_mode,dumpkeys,loadkeys,openvt,setfont} /bin</userinput></screen>
     51<screen os="i"><userinput>mv -v /usr/bin/{kbd_mode,dumpkeys,loadkeys,openvt,setfont, setvtrgb} /bin</userinput></screen>
    4852
    4953  </sect2>
     
    5761
    5862      <seglistitem>
    59         <seg>chvt, deallocvt, dumpkeys, fgconsole, getkeycodes, kbd_mode,
    60         kbdrate, loadkeys, loadunimap, mapscrn, openvt, psfaddtable
     63        <seg>chvt, deallocvt, dumpkeys, fgconsole, getkeycodes, kbdinfo,
     64        kbd_mode, kbdrate, loadkeys, loadunimap, mapscrn, openvt, psfaddtable
    6165        (link to psfxtable), psfgettable (link to psfxtable), psfstriptable
    6266        (link to psfxtable), psfxtable, resizecons, setfont, setkeycodes,
    63         setleds, setmetamode, showconsolefont, showkey, unicode_start, and
    64         unicode_stop</seg>
     67        setleds, setmetamode, setvtrgb, showconsolefont, showkey,
     68        unicode_start, and unicode_stop</seg>
    6569        <seg>/usr/share/consolefonts, /usr/share/consoletrans,
    6670        /usr/share/keymaps, /usr/share/unimaps</seg>
     
    119123          <indexterm zone="ch-system-kbd getkeycodes">
    120124            <primary sortas="b-getkeycodes">getkeycodes</primary>
     125          </indexterm>
     126        </listitem>
     127      </varlistentry>
     128
     129      <varlistentry id="kbdinfo">
     130        <term><command>kbdinfo</command></term>
     131        <listitem>
     132          <para>Obtains information about the console</para>
     133          <indexterm zone="ch-system-kbd kbdinfo">
     134            <primary sortas="b-kbdinfo">kbdinfo</primary>
    121135          </indexterm>
    122136        </listitem>
     
    277291      </varlistentry>
    278292
     293      <varlistentry id="setvtrgb">
     294        <term><command>setvtrgb</command></term>
     295        <listitem>
     296          <para>Sets the virtal terminal RGB colors</para>
     297          <indexterm zone="ch-system-kbd setvtrgb">
     298            <primary sortas="b-setvtrgb">setvtrgb</primary>
     299          </indexterm>
     300        </listitem>
     301      </varlistentry>
     302
    279303      <varlistentry id="showconsolefont">
    280304        <term><command>showconsolefont</command></term>
  • BOOK/final-system/common/pkg-config.xml

    r8f3d17f r32f55264  
    2828    <para os="a">Prepare Pkg-config for compilation:</para>
    2929
    30 <screen os="b"><userinput>./configure --prefix=/usr</userinput></screen>
     30<screen os="b"><userinput>GLIB_CFLAGS="-I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include" \
     31    GLIB_LIBS="-lglib-2.0" \
     32    ./configure --prefix=/usr</userinput></screen>
     33
     34    <variablelist os="bb">
     35      <title>The meaning of the new configure option:</title>
     36
     37      <varlistentry>
     38        <term><parameter>GLIB_CFLAGS="-I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include"</parameter></term>
     39        <term><parameter>GLIB_LIBS="-lglib-2.0"</parameter></term>
     40        <listitem>
     41          <para>Pkg-config no longer comes with Glib and because Pkg-config
     42        has not been installed itself it needs to be told where Glib is.</para>
     43        </listitem>
     44      </varlistentry>
     45    </variablelist>
    3146
    3247    <para os="c">Compile the package:</para>
  • BOOK/final-system/common/xz.xml

    r8f3d17f r32f55264  
    3636<screen os="d"><userinput>make</userinput></screen>
    3737
    38     <para os="e">Install the programs:</para>
    39 
    40 <screen os="f"><userinput>make install</userinput></screen>
    41 
    42     <para os="g">Move the <filename>xz</filename> binary, and several symlinks
     38    <para os="e">To test the results, issue:
     39    <userinput>make check</userinput>.</para>
     40
     41
     42    <para os="f">Install the programs:</para>
     43
     44<screen os="g"><userinput>make install</userinput></screen>
     45
     46    <para os="h">Move the <filename>xz</filename> binary, and several symlinks
    4347    that point to it, into the /bin directory:</para>
    4448
    45 <screen os="h"><userinput>mv -v /usr/bin/{xz,lzma,lzcat,unlzma,unxz,xzcat} /bin</userinput></screen>
    46 
    47     <para os="i">Move the static libraries to the proper location:</para>
    48 
    49 <screen os="j"><userinput>mv -v /lib/liblzma.a /usr/lib</userinput></screen>
     49<screen os="i"><userinput>mv -v /usr/bin/{xz,lzma,lzcat,unlzma,unxz,xzcat} /bin</userinput></screen>
    5050
    5151  </sect2>
  • BOOK/final-system/mips-chapter.xml

    r8f3d17f r32f55264  
    3030  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/sed.xml"/>
    3131  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/ncurses.xml"/>
     32  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/glib.xml"/>
    3233  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/pkg-config.xml"/>
    3334  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/util-linux.xml"/>
  • BOOK/final-system/mips64-64-chapter.xml

    r8f3d17f r32f55264  
    3030  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/sed.xml"/>
    3131  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/ncurses.xml"/>
     32  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/glib.xml"/>
    3233  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/pkg-config.xml"/>
    3334  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/util-linux.xml"/>
  • BOOK/final-system/mips64-chapter.xml

    r8f3d17f r32f55264  
    4545  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="multilib/ncurses-n32.xml"/>
    4646  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="multilib/ncurses-64bit.xml"/>
     47  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="multilib/glib.xml"/>
     48  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="multilib/glib-n32.xml"/>
     49  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="multilib/glib-64bit.xml"/>
    4750  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="mips64/pkg-config.xml"/>
    4851  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="multilib/util-linux.xml"/>
  • BOOK/final-system/multilib/kbd.xml

    r8f3d17f r32f55264  
    2121  <sect2 role="installation">
    2222    <title>Installation of Kbd</title>
     23
     24    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
     25    href="../common/kbd.xml"
     26    xpointer="xpointer(//*[@os='p1'])"/>
     27
     28    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
     29    href="../common/kbd.xml"
     30    xpointer="xpointer(//*[@os='p2'])"/>
    2331
    2432    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
  • BOOK/final-system/multilib/pkg-config.xml

    r8f3d17f r32f55264  
    2626    xpointer="xpointer(//*[@os='a'])"/>
    2727
    28 <screen os="b"><userinput>CC="gcc ${BUILD64}" \
     28<screen os="b"><userinput>GLIB_CFLAGS="-I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include" \
     29  GLIB_LIBS="-lglib-2.0" \
     30  CC="gcc ${BUILD64}" \
    2931  ./configure --prefix=/usr \
    3032    --with-pc-path=/usr/share/pkgconfig </userinput></screen>
     33
     34    <variablelist os="bb">
     35      <title>The meaning of the new configure option:</title>
     36
     37      <varlistentry>
     38        <term><parameter>GLIB_CFLAGS="-I/usr/include/glib-2.0 -I/usr/libi64/glib-2.0/include"</parameter></term>
     39        <term><parameter>GLIB_LIBS="-lglib-2.0"</parameter></term>
     40        <listitem>
     41          <para>Pkg-config no longer comes with Glib and because Pkg-config
     42        has not been installed itself it needs to be told where Glib is.</para>
     43        </listitem>
     44      </varlistentry>
     45    </variablelist>
     46
    3147
    3248    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
  • BOOK/final-system/multilib/xz-64bit.xml

    r8f3d17f r32f55264  
    5656    xpointer="xpointer(//*[@os='i'])"/>
    5757
    58 <screen os="j"><userinput>mv -v /lib64/liblzma.a /usr/lib64</userinput></screen>
     58    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
     59    href="xz.xml"
     60    xpointer="xpointer(//*[@os='j'])"/>
     61
     62    <screen os="k"><userinput>mv -v /lib64/liblzma.a /usr/lib64</userinput></screen>
    5963
    6064  </sect2>
  • BOOK/final-system/multilib/xz-n32.xml

    r8f3d17f r32f55264  
    5757    xpointer="xpointer(//*[@os='i'])"/>
    5858
    59 <screen os="j"><userinput>mv -v /lib32/liblzma.a /usr/lib32</userinput></screen>
     59    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
     60    href="xz.xml"
     61    xpointer="xpointer(//*[@os='j'])"/>
     62
     63<screen os="k"><userinput>mv -v /lib32/liblzma.a /usr/lib32</userinput></screen>
    6064
    6165  </sect2>
  • BOOK/final-system/multilib/xz.xml

    r8f3d17f r32f55264  
    5757    xpointer="xpointer(//*[@os='i'])"/>
    5858
    59     <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
    60     href="../common/xz.xml"
    61     xpointer="xpointer(//*[@os='j'])"/>
     59    <para os="j">Move the static libraries to the proper location:</para>
     60
     61    <screen os="k"><userinput>mv -v /lib/liblzma.a /usr/lib</userinput></screen>
    6262
    6363  </sect2>
  • BOOK/final-system/ppc-chapter.xml

    r8f3d17f r32f55264  
    3030  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/sed.xml"/>
    3131  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/ncurses.xml"/>
     32  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/glib.xml"/>
    3233  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/pkg-config.xml"/>
    3334  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/util-linux.xml"/>
  • BOOK/final-system/ppc64-chapter.xml

    r8f3d17f r32f55264  
    3939  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="multilib/ncurses.xml"/>
    4040  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="multilib/ncurses-64bit.xml"/>
     41  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="multilib/glib.xml"/>
     42  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="multilib/glib-64bit.xml"/>
    4143  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="multilib/pkg-config.xml"/>
    4244  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="multilib/util-linux.xml"/>
  • BOOK/final-system/sparc-chapter.xml

    r8f3d17f r32f55264  
    3030  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/sed.xml"/>
    3131  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/ncurses.xml"/>
     32  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/glib.xml"/>
    3233  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/pkg-config.xml"/>
    3334  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/util-linux.xml"/>
  • BOOK/final-system/sparc64-64-chapter.xml

    r8f3d17f r32f55264  
    3030  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/sed.xml"/>
    3131  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/ncurses.xml"/>
     32  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/glib.xml"/>
    3233  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/pkg-config.xml"/>
    3334  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/util-linux.xml"/>
  • BOOK/final-system/sparc64-chapter.xml

    r8f3d17f r32f55264  
    3939  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="multilib/ncurses.xml"/>
    4040  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="multilib/ncurses-64bit.xml"/>
     41  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="multilib/glib.xml"/>
     42  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="multilib/glib-64bit.xml"/>
    4143  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="multilib/pkg-config.xml"/>
    4244  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="multilib/util-linux.xml"/>
  • BOOK/final-system/x86-chapter.xml

    r8f3d17f r32f55264  
    3030  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/sed.xml"/>
    3131  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/ncurses.xml"/>
     32  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/glib.xml"/>
    3233  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/pkg-config.xml"/>
    3334  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/util-linux.xml"/>
  • BOOK/final-system/x86_64-64-chapter.xml

    r8f3d17f r32f55264  
    3030  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/sed.xml"/>
    3131  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/ncurses.xml"/>
     32  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/glib.xml"/>
    3233  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/pkg-config.xml"/>
    3334  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/util-linux.xml"/>
  • BOOK/final-system/x86_64-chapter.xml

    r8f3d17f r32f55264  
    3939  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="multilib/ncurses.xml"/>
    4040  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="multilib/ncurses-64bit.xml"/>
     41  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="multilib/glib.xml"/>
     42  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="multilib/glib-64bit.xml"/>
    4143  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="multilib/pkg-config.xml"/>
    4244  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="multilib/util-linux.xml"/>
Note: See TracChangeset for help on using the changeset viewer.