[55ab27c] | 1 | <?xml version="1.0" encoding="ISO-8859-1"?>
|
---|
| 2 | <!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.4//EN"
|
---|
| 3 | "http://www.oasis-open.org/docbook/xml/4.4/docbookx.dtd" [
|
---|
| 4 | <!ENTITY % general-entities SYSTEM "../../general.ent">
|
---|
| 5 | %general-entities;
|
---|
| 6 | ]>
|
---|
| 7 |
|
---|
| 8 | <sect1 id="ch-system-yaboot" role="wrap">
|
---|
| 9 | <?dbhtml filename="yaboot.html"?>
|
---|
| 10 |
|
---|
| 11 | <title>Yaboot-&yaboot-version;</title>
|
---|
| 12 |
|
---|
| 13 | <indexterm zone="ch-system-yaboot">
|
---|
| 14 | <primary sortas="a-Yaboot">Yaboot</primary>
|
---|
| 15 | </indexterm>
|
---|
| 16 |
|
---|
[c06e893] | 17 | <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
|
---|
| 18 | href="../ppc/yaboot.xml"
|
---|
| 19 | xpointer="xpointer(//*[@role='package'])"/>
|
---|
[55ab27c] | 20 |
|
---|
| 21 | <sect2 role="installation">
|
---|
| 22 | <title>Installation of Yaboot</title>
|
---|
| 23 |
|
---|
[c06e893] | 24 | <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
|
---|
| 25 | href="../ppc/yaboot.xml"
|
---|
| 26 | xpointer="xpointer(//*[@os='a'])"/>
|
---|
[55ab27c] | 27 |
|
---|
[c06e893] | 28 | <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
|
---|
| 29 | href="../ppc/yaboot.xml"
|
---|
| 30 | xpointer="xpointer(//*[@os='b'])"/>
|
---|
[55ab27c] | 31 |
|
---|
[c06e893] | 32 | <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
|
---|
| 33 | href="../ppc/yaboot.xml"
|
---|
| 34 | xpointer="xpointer(//*[@os='c'])"/>
|
---|
[55ab27c] | 35 |
|
---|
[c06e893] | 36 | <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
|
---|
| 37 | href="../ppc/yaboot.xml"
|
---|
| 38 | xpointer="xpointer(//*[@os='d'])"/>
|
---|
[55ab27c] | 39 |
|
---|
[c06e893] | 40 | <para>Existing multilib distributions alter gcc to default to 32-bit
|
---|
| 41 | output. Because our gcc defaults to 64-bit, we need to pass appropriate
|
---|
| 42 | options to both the compiler and the linker. The Makefile already
|
---|
| 43 | overrides any CC and ignores LDFLAGS in favour of its own variables, so we
|
---|
| 44 | need to use the following seds for a successful compile and install.</para>
|
---|
[55ab27c] | 45 |
|
---|
[c06e893] | 46 | <screen><userinput>sed -i -e "s/\(-print-libgcc-file-name\)/${BUILD32} \1/" \
|
---|
| 47 | -e "s/\(-Bstatic\)/-melf32ppclinux \1/" Makefile
|
---|
| 48 | </userinput></screen>
|
---|
[55ab27c] | 49 |
|
---|
[c06e893] | 50 | <variablelist os="j">
|
---|
| 51 | <title>The meaning of the sed parameters:</title>
|
---|
[55ab27c] | 52 |
|
---|
[c06e893] | 53 | <varlistentry>
|
---|
| 54 | <term><parameter>"s/\(-print-libgcc-file-name\)/${BUILD32} \1/"</parameter></term>
|
---|
[55ab27c] | 55 | <listitem>
|
---|
[c06e893] | 56 | <para>This picks a convenient place within the Makefile's lgcc
|
---|
| 57 | variable and inserts the flag to force <command>gcc</command> to
|
---|
| 58 | create 32-bit code when compiling yaboot.</para>
|
---|
[55ab27c] | 59 | </listitem>
|
---|
| 60 | </varlistentry>
|
---|
[c06e893] | 61 | <varlistentry>
|
---|
| 62 | <term><parameter>"s/\(-Bstatic\)/-melf32ppclinux \1/"</parameter></term>
|
---|
[55ab27c] | 63 | <listitem>
|
---|
[c06e893] | 64 | <para>This picks the end of the LFLAGS which the Makefile passes to
|
---|
| 65 | the linker to create the second-stage linux loader, and inserts a
|
---|
| 66 | flag to force <command>ld</command> to use a suitable 32-bit
|
---|
| 67 | emulation picked from the output of <command>'ld -V'</command>.</para>
|
---|
[55ab27c] | 68 | </listitem>
|
---|
| 69 | </varlistentry>
|
---|
| 70 |
|
---|
[c06e893] | 71 | </variablelist>
|
---|
[55ab27c] | 72 |
|
---|
[c06e893] | 73 | <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
|
---|
| 74 | href="../ppc/yaboot.xml"
|
---|
| 75 | xpointer="xpointer(//*[@os='e'])"/>
|
---|
[55ab27c] | 76 |
|
---|
[c06e893] | 77 | <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
|
---|
| 78 | href="../ppc/yaboot.xml"
|
---|
| 79 | xpointer="xpointer(//*[@os='f'])"/>
|
---|
[55ab27c] | 80 |
|
---|
[c06e893] | 81 | <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
|
---|
| 82 | href="../ppc/yaboot.xml"
|
---|
| 83 | xpointer="xpointer(//*[@os='g'])"/>
|
---|
[55ab27c] | 84 |
|
---|
[9619f1a] | 85 | <screen os="h"><userinput>CFLAGS="${BUILD32}" make PREFIX=/usr</userinput></screen>
|
---|
| 86 |
|
---|
[c06e893] | 87 | <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
|
---|
| 88 | href="../ppc/yaboot.xml"
|
---|
| 89 | xpointer="xpointer(//*[@os='i'])"/>
|
---|
| 90 |
|
---|
[bc5db55] | 91 | <important os="j0">
|
---|
| 92 | <para>The multilib install of yaboot can fail if you miss any of the
|
---|
| 93 | patches or seds, or omit the CFLAGS variable. <command>ld</command> will
|
---|
| 94 | issue warnings, but the install will appear to complete successfully.
|
---|
| 95 | That would result in an unbootable system, so you need to log the output
|
---|
| 96 | to check it.</para>
|
---|
| 97 | </important>
|
---|
| 98 |
|
---|
| 99 | <screen><userinput>make PREFIX=/usr install 2>&1 | tee instlog</userinput></screen>
|
---|
[9619f1a] | 100 |
|
---|
| 101 | <para os='k'>To ensure that the install was successful, run the following
|
---|
| 102 | command:</para>
|
---|
| 103 |
|
---|
| 104 | <screen os='l'><userinput>grep 'powerpc:common64' instlog</userinput></screen>
|
---|
| 105 |
|
---|
| 106 | <para os='m'>If the command gave you <emphasis>any</emphasis> output
|
---|
[bc5db55] | 107 | (... is incompatible with powerpc:common output) the build of yaboot is
|
---|
| 108 | broken and you will have to correct your error(s) and repeat it.</para>
|
---|
[55ab27c] | 109 |
|
---|
| 110 | </sect2>
|
---|
| 111 |
|
---|
[c06e893] | 112 | <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
|
---|
| 113 | href="../ppc/yaboot.xml"
|
---|
| 114 | xpointer="xpointer(id('contents-yaboot'))"/>
|
---|
| 115 |
|
---|
[55ab27c] | 116 | </sect1>
|
---|