source: BOOK/boot/ppc/yaboot-build.xml@ 8929f07

clfs-2.1 clfs-3.0.0-systemd clfs-3.0.0-sysvinit systemd sysvinit
Last change on this file since 8929f07 was 2bdaa81, checked in by William Harrington <kb0iic@…>, 12 years ago

Add yaboot stubfuncs patch entries.

  • Property mode set to 100644
File size: 2.6 KB
RevLine 
[5c8aba6]1<?xml version="1.0" encoding="ISO-8859-1"?>
[aa18ac0]2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
3 "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
[5c8aba6]4 <!ENTITY % general-entities SYSTEM "../../general.ent">
5 %general-entities;
6]>
7
8<sect1 id="ch-boot-yaboot-build" role="wrap">
9 <?dbhtml filename="yaboot-build.html"?>
10
11 <title>Yaboot-&yaboot-version;</title>
12
13 <indexterm zone="ch-boot-yaboot-build">
14 <primary sortas="a-Yaboot">Yaboot</primary>
[d5cf87a3]15 <secondary>boot</secondary>
[5c8aba6]16 </indexterm>
17
[dabbced]18 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
[d5cf87a3]19 href="../../final-system/ppc/yaboot.xml"
20 xpointer="xpointer(//*[@role='package'])"/>
[5c8aba6]21
22 <sect2 role="installation">
23 <title>Installation of Yaboot</title>
24
[2bdaa81]25 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
26 href="../../final-system/ppc/yaboot.xml"
27 xpointer="xpointer(//*[@os='p3'])"/>
28
29 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
30 href="../../final-system/ppc/yaboot.xml"
31 xpointer="xpointer(//*[@os='p4'])"/>
32
[bc5db55]33 <para os="p1">The following patch allows <command>ofpath</command> to use
34 <literal>PATH_PREFIX</literal> like the other
35 <filename class="directory">ybin</filename> scripts:</para>
36
37<screen os="p2"><userinput>patch -Np1 -i ../&yaboot-ofpath_path-patch;</userinput></screen>
38
[d767eb3]39 <para>The Makefile is already set to do kernel-style cross-compiling,
40 but it will try to use <command>strip</command> to strip the second-stage
[8fd11cd]41 loader. It also tries to change user and group ownership for the installed
42 files to <systemitem class="username">root</systemitem>, which the
[a5f7c53e]43 <systemitem class="username">clfs</systemitem> user cannot do. It will also
44 fail due to a compile warning with the -Werror flag on. The following
45 command fixes these issues:</para>
[d767eb3]46
[0c7419e8]47<screen><userinput>cp -v Makefile{,.orig}
[07114c98]48sed -e "s/\(strip \)/${CLFS_TARGET}-\1/" \
[d767eb3]49 -e 's/-o root -g root//' \
[a5f7c53e]50 -e 's/-Werror//' \
[1b274255]51 Makefile.orig &gt; Makefile</userinput></screen>
[d767eb3]52
[dabbced]53 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
[d767eb3]54 href="../../final-system/ppc/yaboot.xml"
[291bd8b]55 xpointer="xpointer(//*[@os='c'])"/>
[d767eb3]56
[07114c98]57<screen><userinput>make CROSS=${CLFS_TARGET}-</userinput></screen>
[d767eb3]58
[dabbced]59 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
[d767eb3]60 href="../../final-system/ppc/yaboot.xml"
[291bd8b]61 xpointer="xpointer(//*[@os='e'])"/>
[d767eb3]62
[bc2e3fa]63<screen><userinput>make CROSS=${CLFS_TARGET}- ROOT=/tools PREFIX="" install</userinput></screen>
[5c8aba6]64
65 </sect2>
66
67 <sect2 role="content">
68 <title/>
69
70 <para>Details on this package are located in <xref linkend="contents-yaboot" role="."/></para>
71
72 </sect2>
73
74</sect1>
Note: See TracBrowser for help on using the repository browser.