source: boot/ppc/yaboot-build.xml @ 996dcd2

Last change on this file since 996dcd2 was e3eb047b, checked in by Jim Gifford <clfs@…>, 18 years ago

r3870@server (orig r1744): ken | 2006-06-08 15:31:32 -0700
Flesh-out chapter 7 for ppc.

  • Property mode set to 100644
File size: 2.4 KB
Line 
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-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>
15    <secondary>boot</secondary>
16  </indexterm>
17
18  <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
19  href="../../final-system/ppc/yaboot.xml"
20  xpointer="xpointer(//*[@role='package'])"/>
21
22  <sect2 role="installation">
23    <title>Installation of Yaboot</title>
24
25    <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
26    href="../../final-system/ppc/yaboot.xml"
27    xpointer="xpointer(//*[@os='a'])"/>
28
29    <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
30    href="../../final-system/ppc/yaboot.xml"
31    xpointer="xpointer(//*[@os='b'])"/>
32
33    <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
34    href="../../final-system/ppc/yaboot.xml"
35    xpointer="xpointer(//*[@os='c'])"/>
36
37    <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
38    href="../../final-system/ppc/yaboot.xml"
39    xpointer="xpointer(//*[@os='d'])"/>
40
41    <para>The Makefile is already set to do kernel-style cross-compiling,
42    but it will try to use <command>strip</command> to strip the second-stage
43    loader.  It also expects to be running as root for the install, and to
44    install for the root user, which user LFS cannot do.  The following command
45    will fix this:</para>
46
47<screen><userinput>cp Makefile,{.orig}
48sed -e "s/\(strip \)/${LFS_TARGET}-\1/" \
49    -e 's/-o root -g root//' \
50    Makefile.orig > Makefile</userinput></screen>
51
52    <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
53    href="../../final-system/ppc/yaboot.xml"
54    xpointer="xpointer(//*[@os='g'])"/>
55
56<screen><userinput>make CROSS=${LFS_TARGET}-</userinput></screen>
57
58    <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
59    href="../../final-system/ppc/yaboot.xml"
60    xpointer="xpointer(//*[@os='i'])"/>
61
62<screen><userinput>make CROSS=${LFS_TARGET}- ROOT=/tools PREFIX= install</userinput></screen>
63
64  </sect2>
65
66  <sect2 role="content">
67    <title/>
68
69    <para>Details on this package are located in <xref linkend="contents-yaboot" role="."/></para>
70
71  </sect2>
72
73</sect1>
Note: See TracBrowser for help on using the repository browser.