* [gentoo-doc-cvs] cvs commit: hb-install-ppc-bootloader.xml
@ 2005-07-28 16:42 Joseph Jezak
0 siblings, 0 replies; 23+ messages in thread
From: Joseph Jezak @ 2005-07-28 16:42 UTC (permalink / raw
To: gentoo-doc-cvs
josejx 05/07/28 16:42:03
Modified: xml/htdocs/doc/en/handbook/draft/2005.1
hb-install-ppc-bootloader.xml
hb-install-ppc-disk.xml hb-install-ppc-medium.xml
Log:
Yoswink, please don't stab me. (PPC 2005.1 handbook updates.)
Revision Changes Path
1.2 +195 -51 xml/htdocs/doc/en/handbook/draft/2005.1/hb-install-ppc-bootloader.xml
file : http://www.gentoo.org/cgi-bin/viewcvs.cgi/xml/htdocs/doc/en/handbook/draft/2005.1/hb-install-ppc-bootloader.xml?rev=1.2&content-type=text/x-cvsweb-markup&cvsroot=gentoo
plain: http://www.gentoo.org/cgi-bin/viewcvs.cgi/xml/htdocs/doc/en/handbook/draft/2005.1/hb-install-ppc-bootloader.xml?rev=1.2&content-type=text/plain&cvsroot=gentoo
diff : http://www.gentoo.org/cgi-bin/viewcvs.cgi/xml/htdocs/doc/en/handbook/draft/2005.1/hb-install-ppc-bootloader.xml.diff?r1=1.1&r2=1.2&cvsroot=gentoo
Index: hb-install-ppc-bootloader.xml
===================================================================
RCS file: /var/cvsroot/gentoo/xml/htdocs/doc/en/handbook/draft/2005.1/hb-install-ppc-bootloader.xml,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- hb-install-ppc-bootloader.xml 5 Jul 2005 08:02:04 -0000 1.1
+++ hb-install-ppc-bootloader.xml 28 Jul 2005 16:42:03 -0000 1.2
@@ -4,7 +4,7 @@
<!-- The content of this document is licensed under the CC-BY-SA license -->
<!-- See http://creativecommons.org/licenses/by-sa/1.0 -->
-<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/doc/en/handbook/draft/2005.1/hb-install-ppc-bootloader.xml,v 1.1 2005/07/05 08:02:04 swift Exp $ -->
+<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/doc/en/handbook/draft/2005.1/hb-install-ppc-bootloader.xml,v 1.2 2005/07/28 16:42:03 josejx Exp $ -->
<sections>
@@ -12,25 +12,23 @@
<date>2005-03-19</date>
<section>
-<title>Making your Choice</title>
+<title>Choosing a Bootloader</title>
<subsection>
<title>Introduction</title>
<body>
<p>
-Now that your kernel is configured and compiled and the necessary system
-configuration files are filled in correctly, it is time to install a
-program that will fire up your kernel when you start the system. Such a
-program is called a <e>bootloader</e>. But before you start, consider
-your options...
+Now that the kernel is configured and compiled, you'll need a <e>bootloader</e>
+to start your new linux installation. The <e>bootloader</e> that you use will
+depend upon the type of PPC machine you have.
</p>
<p>
-Several bootloaders exist for Linux/PPC. We have <uri link="#yaboot">yaboot</uri>
-(for NewWorld Apple and IBM machines) and <uri link="#bootx">BootX</uri> (for
-OldWorld Apple and IBM machines). The Pegasos does not require a bootloader, but
-we included the <uri link="#bootcreator">BootCreator</uri> for creating a
-SmartFirmware bootmenu.
+If you are using a NewWorld Apple or IBM machine, you need to use
+<uri link="#yaboot">yaboot</uri>. OldWorld Apple machines have two options,
+<uri link="#bootx">BootX</uri> (recommended) and <uri link="#quik">quik</uri>.
+The Pegasos does not require a bootloader, but you will need to emerge
+<uri link="#bootcreator">BootCreator</uri> to create SmartFirmware bootmenus.
</p>
</body>
@@ -47,9 +45,9 @@
</impo>
<p>
-First we have to create the <path>/dev</path> files in our new home, which is
-needed during the bootloader installation. This could be done by "bind"-mapping
-the <path>/dev</path>-filesystem from the Installation CD:
+In order to find the boot devices, yaboot needs access to the <path>/dev</path>
+filesystem. To do this, you will need to "bind-map" the <path>/dev</path>
+filesystem from the Installation CD to <path>/dev</path> inside of the chroot.
</p>
<pre caption="Bind-mounting the /dev-filesystem">
@@ -60,14 +58,35 @@
</pre>
<p>
-There are two ways to configure yaboot for your system. You can use the
-included <c>yabootconfig</c> to automatically set up yaboot. If
-for some reason you do not want to run <c>yabootconfig</c> to
-automatically set up <path>/etc/yaboot.conf</path> or you are installing Gentoo
-on a G5 (on which <c>yabootconfig</c> does not always work), you can just edit
-the sample file already installed on your system.
+To set up yaboot, you can use <c>yabootconfig</c> to automatically create a
+configuration file for you. If you are installing Gentoo on a G5 (where
+<c>yabootconfig</c> does not always work), or you plan to boot from firewire
+or USB, you will need to manually configure yaboot.
</p>
+<note>
+You will need to manually edit the yaboot.conf when using genkernel, even if
+yabootconfig is used. The kernel image section of yaboot.conf should be
+modified as follows:
+</note>
+
+<pre caption="Adding genkernel boot arguments to yaboot.conf">
+<comment>###########################################################
+## This section can be duplicated if you have more than one
+## kernel or set of boot options - replace kernel-2.6.12
+## with the exact filename of your kernel.
+###########################################################</comment>
+image=/boot/kernel-2.6.12
+ label=Linux
+ root=/dev/ram0 <comment># If using genkernel this is /dev/ram0</comment>
+ partition=3
+ append="real_root=/dev/hda3 init=/linuxrc"
+ <comment># You can add additional kernel arguments to append such as
+ # rootdelay=10 for a USB/Firewire Boot</comment>
+ read-only
+<comment>##########################################################</comment>
+</pre>
+
<ul>
<li><uri link="#yabootconfig">Default: Using yabootconfig</uri></li>
<li>
@@ -138,10 +157,10 @@
</pre>
<p>
-Below you find a completed <path>yaboot.conf</path> file. Alter it at
-will. G5 users should be aware that their disks are Serial ATA disks which are
-seen as SCSI disks by the Linux kernel (so substitute <path>/dev/hda</path> with
-<path>/dev/sda</path>).
+An example <path>yaboot.conf</path> file is given below, but you will need to
+alter it to fit your needs. G5 users and users booting from firewire and USB
+should be aware that their disks are seen as SCSI disks by the Linux kernel, so
+you will need to substitute <path>/dev/hda</path> with <path>/dev/sda</path>).
</p>
<pre caption = "/etc/yaboot.conf">
@@ -166,9 +185,21 @@
#ofboot=hd:2
-## hd: is open firmware speak for hda</comment>
+## Users booting from firewire should use something like this line:
+# ofboot=fw/node/sbp-2/disk@0:
+
+## Users booting from USB should use something like this line:
+# ofboot=usb/disk@0:
+
+## hd: is shorthand for the first hard drive OpenFirmware sees</comment>
device=hd:
+<comment>## Firewire and USB users will need to specify the whole OF device name
+## This can be found using ofpath, which is included with yaboot.
+
+# device=fw/node@0001d200e00d0207/sbp-2@c000/disk@0:
+</comment>
+
delay=5
defaultos=macosx
timeout=30
@@ -183,7 +214,7 @@
label=Linux
root=/dev/hda3
partition=3
- sysmap=/boot/System.map-2.6.9
+<comment># append="rootdelay=10" # Required for booting USB/Firewire</comment>
read-only
<comment>##################
@@ -198,17 +229,10 @@
</pre>
<p>
-Once <path>yaboot.conf</path> is set up the way you want it, you run
-<c>mkofboot -v</c> to install the settings in the bootstrap partition. <e>Don't
-forget this!</e> Confirm when <c>mkofboot</c> asks you to create a new
-filesystem.
-</p>
-
-<p>
-If all goes well, and you have the same options as the sample
-above, your next reboot will give you a simple, five-entry boot menu. If you
-update your yaboot config later on, you'll just need to run <c>ybin -v</c> to
-update the bootstrap partition - <c>mkofboot</c> is for initial setup only.
+Once <path>yaboot.conf</path> is configured, run <c>mkofboot -v</c> to format
+the Apple_bootstrap partition and install the settings. If you change
+yaboot.conf after the Apple_bootstrap partition has been created, you can
+update the settings by running <c>ybin -v</c>
</p>
<p>
@@ -226,22 +250,44 @@
<body>
<impo>
-BootX can only be used on OldWorld Apple and IBM systems!
+BootX can only be used on OldWorld Apple systems!
</impo>
<p>
-BootX requires that you reboot first. So, let's reboot shall we :)
+Since BootX boots Linux from within MacOS, the kernel will need to be copied
+from the Linux Partition to the MacOS partition. First, mount the MacOS
+partition from outside of the chroot. Use <c>mac-fdisk -l</c> to find the
+MacOS partition number, sda6 is used as an example here. Once the partition is
+mounted, we'll copy the kernel to the system folder so BootX can find it.
</p>
+<pre caption="Copying the kernel to the MacOS partition">
+# <i>exit</i>
+cdimage ~# <i>mkdir /mnt/mac</i>
+cdimage ~# <i>mount /dev/sda6 /mnt/mac -t hfs</i>
+cdimage ~# <i>cp /mnt/gentoo/usr/src/linux/vmlinux "/mnt/mac/System Folder/Linux Kernels"</i>
+</pre>
1.2 +24 -25 xml/htdocs/doc/en/handbook/draft/2005.1/hb-install-ppc-disk.xml
file : http://www.gentoo.org/cgi-bin/viewcvs.cgi/xml/htdocs/doc/en/handbook/draft/2005.1/hb-install-ppc-disk.xml?rev=1.2&content-type=text/x-cvsweb-markup&cvsroot=gentoo
plain: http://www.gentoo.org/cgi-bin/viewcvs.cgi/xml/htdocs/doc/en/handbook/draft/2005.1/hb-install-ppc-disk.xml?rev=1.2&content-type=text/plain&cvsroot=gentoo
diff : http://www.gentoo.org/cgi-bin/viewcvs.cgi/xml/htdocs/doc/en/handbook/draft/2005.1/hb-install-ppc-disk.xml.diff?r1=1.1&r2=1.2&cvsroot=gentoo
Index: hb-install-ppc-disk.xml
===================================================================
RCS file: /var/cvsroot/gentoo/xml/htdocs/doc/en/handbook/draft/2005.1/hb-install-ppc-disk.xml,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- hb-install-ppc-disk.xml 5 Jul 2005 08:02:04 -0000 1.1
+++ hb-install-ppc-disk.xml 28 Jul 2005 16:42:03 -0000 1.2
@@ -4,7 +4,7 @@
<!-- The content of this document is licensed under the CC-BY-SA license -->
<!-- See http://creativecommons.org/licenses/by-sa/2.5 -->
-<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/doc/en/handbook/draft/2005.1/hb-install-ppc-disk.xml,v 1.1 2005/07/05 08:02:04 swift Exp $ -->
+<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/doc/en/handbook/draft/2005.1/hb-install-ppc-disk.xml,v 1.2 2005/07/28 16:42:03 josejx Exp $ -->
<sections>
@@ -43,15 +43,14 @@
</body>
</subsection>
<subsection>
-<title>Partitions and Slices</title>
+<title>Partitions</title>
<body>
<p>
Although it is theoretically possible to use a full disk to house your Linux
system, this is almost never done in practice. Instead, full disk block devices
are split up in smaller, more manageable block devices. On most systems,
-these are called <e>partitions</e>. Other architectures use a similar technique,
-called <e>slices</e>.
+these are called <e>partitions</e>.
</p>
</body>
@@ -106,8 +105,8 @@
<ti>Type 0x41</ti>
</tr>
<tr>
- <ti>(Not needed)</ti>
- <ti>(Not needed)</ti>
+ <ti>(Not applicable)</ti>
+ <ti><path>/dev/hda2</path> (If using quik)</ti>
<ti><path>/dev/hda1</path></ti>
<ti>(Not needed)</ti>
<ti>ext2</ti>
@@ -116,7 +115,7 @@
</tr>
<tr>
<ti><path>/dev/hda3</path></ti>
- <ti><path>/dev/hda2</path></ti>
+ <ti><path>/dev/hda2</path> (<path>/dev/hda3</path> if using quik)</ti>
<ti><path>/dev/hda2</path></ti>
<ti><path>/dev/sda2</path></ti>
<ti>(swap)</ti>
@@ -125,7 +124,7 @@
</tr>
<tr>
<ti><path>/dev/hda4</path></ti>
- <ti><path>/dev/hda3</path></ti>
+ <ti><path>/dev/hda3</path> (<path>/dev/hda4</path> if using quik)</ti>
<ti><path>/dev/hda3</path></ti>
<ti><path>/dev/sda3</path></ti>
<ti>ext3, xfs</ti>
@@ -135,11 +134,11 @@
</table>
<note>
-There are some partitions named like this: <path>Apple_Driver43,
-Apple_Driver_ATA, Apple_FWDriver, Apple_Driver_IOKit, Apple_Patches</path>. If
-you are not planning to use MacOS 9 you can delete them, because MacOS X and
-Linux don't need them. You might have to use <c>parted</c> in order to delete
-them, as mac-fdisk can't delete them yet.
+There are some partitions named: <path>Apple_Driver63, Apple_Driver_ATA,
+Apple_FWDriver, Apple_Driver_IOKit, Apple_Patches</path>. If you are not
+planning to use MacOS 9 you can delete them, because MacOS X and Linux don't
+need them. To delete them, either use parted or erase the whole disk by
+initialing the partition map.
</note>
<warn>
@@ -152,9 +151,9 @@
<p>
If you are interested in knowing how big a partition should be, or even how many
-partitions you need, read on. Otherwise continue now with <uri
-link="#fdisk">Default: Using mac-fdisk (Apple/IBM) to Partition your Disk</uri>
-or <uri link="#parted">Alternative: Using parted (especially Pegasos) to
+partitions you need, read on. Otherwise continue now with
+<uri link="#mac-fdisk"> Default: Using mac-fdisk (Apple) to Partition your Disk
+</uri> or <uri link="#parted">Alternative: Using parted (IBM/Pegasos) to
Partition your Disk</uri>.
</p>
@@ -212,7 +211,7 @@
</body>
</subsection>
</section>
-<section id="fdisk">
+<section id="mac-fdisk">
<title>Default: Using mac-fdisk (Apple) Partition your Disk</title>
<body>
@@ -372,9 +371,8 @@
<body>
<p>
-Several filesystems are available. ext2, ext3 and XFS are found stable on the
-PPC architecture. jfs is unsupported, ReiserFS still has some problems on ppc
-and is not supported.
+Several filesystems are available. ext2, ext3, ReiserFS and XFS have been found
+stable on the PPC architecture.
</p>
<p>
@@ -403,8 +401,7 @@
extremely well and has metadata journaling. As of kernel 2.4.18+, ReiserFS is
solid and usable as both general-purpose filesystem and for extreme cases such
as the creation of large filesystems, the use of many small files, very large
-files and directories containing tens of thousands of files. Unfortunately we still have some
-issues with ReiserFS on ppc. We do not encourage people to use this filesystem.
+files and directories containing tens of thousands of files.
</p>
<p>
@@ -466,9 +463,11 @@
</p>
<note>
-On OldWorld machines and the PegasosII your partition which holds the kernel must
-be ext2 or ext3. NewWorld machines can boot from any of ext2, ext3, XFS,
-ReiserFS or even HFS/HFS+ filesystems.
+On the PegasosII your partition which holds the kernel must be ext2 or ext3.
+NewWorld machines can boot from any of ext2, ext3, XFS, ReiserFS or even
+HFS/HFS+ filesystems. On OldWorld machines booting with BootX, the kernel must
+be placed on an HFS partition, but this will be completed when you configure
+your bootloader.
</note>
</body>
1.3 +73 -28 xml/htdocs/doc/en/handbook/draft/2005.1/hb-install-ppc-medium.xml
file : http://www.gentoo.org/cgi-bin/viewcvs.cgi/xml/htdocs/doc/en/handbook/draft/2005.1/hb-install-ppc-medium.xml?rev=1.3&content-type=text/x-cvsweb-markup&cvsroot=gentoo
plain: http://www.gentoo.org/cgi-bin/viewcvs.cgi/xml/htdocs/doc/en/handbook/draft/2005.1/hb-install-ppc-medium.xml?rev=1.3&content-type=text/plain&cvsroot=gentoo
diff : http://www.gentoo.org/cgi-bin/viewcvs.cgi/xml/htdocs/doc/en/handbook/draft/2005.1/hb-install-ppc-medium.xml.diff?r1=1.2&r2=1.3&cvsroot=gentoo
Index: hb-install-ppc-medium.xml
===================================================================
RCS file: /var/cvsroot/gentoo/xml/htdocs/doc/en/handbook/draft/2005.1/hb-install-ppc-medium.xml,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- hb-install-ppc-medium.xml 5 Jul 2005 09:07:02 -0000 1.2
+++ hb-install-ppc-medium.xml 28 Jul 2005 16:42:03 -0000 1.3
@@ -4,7 +4,7 @@
<!-- The content of this document is licensed under the CC-BY-SA license -->
<!-- See http://creativecommons.org/licenses/by-sa/2.5 -->
-<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/doc/en/handbook/draft/2005.1/hb-install-ppc-medium.xml,v 1.2 2005/07/05 09:07:02 swift Exp $ -->
+<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/doc/en/handbook/draft/2005.1/hb-install-ppc-medium.xml,v 1.3 2005/07/28 16:42:03 josejx Exp $ -->
<sections>
@@ -30,16 +30,30 @@
<table>
<tr>
- <th>NewWorld machines</th>
+ <th>Apple NewWorld Machines</th>
<ti>
Power/PowerPC microprocessors (G3, G4, G5) such as iMac, eMac, iBook
- PowerBook, Xserver, PowerMac, Genesi's Pegasos II
+ PowerBook, Xserver, PowerMac
</ti>
</tr>
<tr>
- <th>OldWorld machines</th>
+ <th>Apple OldWorld machines</th>
<ti>
- Limited support for IBM (RS/6000, iSeries, pSeries) and Amiga systems
+ Apple Machines with an OpenFirmware revision less than 3, such as the Beige
+ G3s, PCI PowerMacs and PCI PowerBooks. PCI based Apple Clones should also
+ be supported.
+ </ti>
+</tr>
+<tr>
+ <th>Genesi's Pegasos</th>
+ <ti>
+ Pegasos I/II, Open Desktop Workstation
+ </ti>
+</tr>
+<tr>
+ <th>IBM</th>
+ <ti>
+ RS/6000, iSeries, pSeries
</ti>
</tr>
<tr>
@@ -182,8 +196,8 @@
<li>
You can check its MD5 checksum and compare it with the MD5 checksum we
provide (for instance with the <c>md5sum</c> tool under Linux/Unix or
- <uri link="http://www.etree.org/md5com.html">md5sum</uri> for Windows). How
- to verify MD5 checksums with Mac OS X is described in the <uri
+ <uri link="http://www.etree.org/md5com.html">md5sum</uri> for Windows).
+ Verifying MD5 checksums with Mac OS X is described in the <uri
link="/doc/en/gentoo-ppc-faq.xml#doc_chap1">Gentoo PPC FAQ</uri>.
</li>
<li>
@@ -231,7 +245,7 @@
</body>
</subsection>
<subsection>
-<title>Default: Booting the Universal Installation CD on an Apple/IBM</title>
+<title>Default: Booting the Installation CD with Yaboot</title>
<body>
<p>
@@ -241,25 +255,6 @@
</p>
<p>
-If you have an OldWorld Mac the bootable portion of the Installation CD can't
-be used. Instead you need to download <uri
-link="http://penguinppc.org/projects/bootx/">BootX</uri> and have a working
-MacOS installed on your system. You need to copy the <c>BootX Extension</c> from
-the unpacked archive-file into the <c>Extensions Folder</c> and make a new
-directory called <c>Linux Kernels</c> in the System Folder. In the next step you
-need to copy the files <c>G3G4</c> and <c>G3G4.igz</c> from the
-Installation CD <path>boot</path> folder into the <c>Linux Kernels</c>
-directory. Then reboot the system and wait for BootX to load. After BootX
-loaded you still have to set up a few items. In the options dialog you need
-to check <c>Use Specified RAM Disk</c> and select the <c>G3G4.igz</c>
-which you put in the <c>Linux Kernels</c> directory. The ramdisk size should
-be set to at least <c>32000</c>.
-Furthermore the kernel argument needs to be set to <c>rw init=/linuxrc
-cdroot</c>. Eventually you are able to boot the Installation CD when you
-select Linux on Startup.
-</p>
-
-<p>
After the Installation CD loaded, you will be greeted by a friendly welcome
message and a <e>boot:</e> prompt at the bottom of the screen.
</p>
@@ -321,7 +316,7 @@
</body>
</subsection>
<subsection>
-<title>Alternative: Booting the Universal Installation CD on a Pegasos</title>
+<title>Alternative: Booting the Installation CD on a Pegasos</title>
<body>
<p>
@@ -337,6 +332,56 @@
</body>
</subsection>
+
+<subsection>
+<title>Alternative: Booting the Installation CD with BootX</title>
+<body>
+
+<p>
+If you have an OldWorld Mac the bootable portion of the livecd can't be used.
+The most simple solution is to use MacOS to bootstrap into a Linux environment
+with a tool called BootX. Boot floppies are being prepared for Macs without
+MacOS, but they are not available at this time.
+</p>
+
+<p>
+First, download <uri link="http://penguinppc.org/projects/bootx/">BootX</uri>
+and unpack the archive. Copy the the <c>BootX Extension</c> from the unpacked
+archive into <c>Extensions Folder</c> and the BootX App Control Panel into
+<c>Control Panels</c>, both of which are located in your MacOS System Folder.
+Next, create a folder called "Linux Kernels" in your System folder and copy the
+<c>G3G4</c> kernel from the CD to this folder. Finally, copy <c>G3G4.igz</c>
+from the Installation CD <path>boot</path> folder into the MacOS
+<c>System Folder</c>.
+</p>
+
+<p>
+To prepare BootX, start the BootX App Control Panel. First select the Options
+dialog and check <c>Use Specified RAM Disk</c> and select <c>G3G4.igz</c> from
+your System Folder. Continue back to the initial screen and ensure that the
+ramdisk size is at least <c>32000</c>. Finally, set the kernel arguments as
+shown below:
+</p>
+
+<pre caption="BootX kernel arguments">
+cdroot root=/dev/ram0 init=linuxrc loop=livecd.squashfs looptype=squashfs console=tty0 nodevfs udev
+</pre>
+
+<note>
+The kernel parameters in the yaboot section above are also applicable here.
+</note>
+
+<p>
+Check once more to make sure the settings are correct and then save the
+configuration. This saves typing just in case it doesn't boot or something is
+missing. Press the Linux button at the top of the window to boot into the
+Installation CD and continue with <uri link="#booted">And When
+You're Booted...</uri>
+</p>
+
+</body>
+</subsection>
+
<subsection id="booted">
<title>And When You're Booted...</title>
<body>
--
gentoo-doc-cvs@gentoo.org mailing list
^ permalink raw reply [flat|nested] 23+ messages in thread
* [gentoo-doc-cvs] cvs commit: hb-install-ppc-bootloader.xml
@ 2005-08-04 1:17 Joseph Jezak
0 siblings, 0 replies; 23+ messages in thread
From: Joseph Jezak @ 2005-08-04 1:17 UTC (permalink / raw
To: gentoo-doc-cvs
josejx 05/08/04 01:17:24
Added: xml/htdocs/doc/en/handbook/draft
hb-install-ppc-bootloader.xml
hb-install-ppc-disk.xml hb-install-ppc-kernel.xml
hb-install-ppc-medium.xml
Log:
Added PPC handbook updates.
Revision Changes Path
1.18 +309 -91 xml/htdocs/doc/en/handbook/draft/hb-install-ppc-bootloader.xml
file : http://www.gentoo.org/cgi-bin/viewcvs.cgi/xml/htdocs/doc/en/handbook/draft/hb-install-ppc-bootloader.xml?rev=1.18&content-type=text/x-cvsweb-markup&cvsroot=gentoo
plain: http://www.gentoo.org/cgi-bin/viewcvs.cgi/xml/htdocs/doc/en/handbook/draft/hb-install-ppc-bootloader.xml?rev=1.18&content-type=text/plain&cvsroot=gentoo
diff : http://www.gentoo.org/cgi-bin/viewcvs.cgi/xml/htdocs/doc/en/handbook/draft/hb-install-ppc-bootloader.xml.diff?r1=1.17&r2=1.18&cvsroot=gentoo
1.16 +113 -71 xml/htdocs/doc/en/handbook/draft/hb-install-ppc-disk.xml
file : http://www.gentoo.org/cgi-bin/viewcvs.cgi/xml/htdocs/doc/en/handbook/draft/hb-install-ppc-disk.xml?rev=1.16&content-type=text/x-cvsweb-markup&cvsroot=gentoo
plain: http://www.gentoo.org/cgi-bin/viewcvs.cgi/xml/htdocs/doc/en/handbook/draft/hb-install-ppc-disk.xml?rev=1.16&content-type=text/plain&cvsroot=gentoo
diff : http://www.gentoo.org/cgi-bin/viewcvs.cgi/xml/htdocs/doc/en/handbook/draft/hb-install-ppc-disk.xml.diff?r1=1.15&r2=1.16&cvsroot=gentoo
1.20 +198 -80 xml/htdocs/doc/en/handbook/draft/hb-install-ppc-kernel.xml
file : http://www.gentoo.org/cgi-bin/viewcvs.cgi/xml/htdocs/doc/en/handbook/draft/hb-install-ppc-kernel.xml?rev=1.20&content-type=text/x-cvsweb-markup&cvsroot=gentoo
plain: http://www.gentoo.org/cgi-bin/viewcvs.cgi/xml/htdocs/doc/en/handbook/draft/hb-install-ppc-kernel.xml?rev=1.20&content-type=text/plain&cvsroot=gentoo
diff : http://www.gentoo.org/cgi-bin/viewcvs.cgi/xml/htdocs/doc/en/handbook/draft/hb-install-ppc-kernel.xml.diff?r1=1.19&r2=1.20&cvsroot=gentoo
1.27 +166 -102 xml/htdocs/doc/en/handbook/draft/hb-install-ppc-medium.xml
file : http://www.gentoo.org/cgi-bin/viewcvs.cgi/xml/htdocs/doc/en/handbook/draft/hb-install-ppc-medium.xml?rev=1.27&content-type=text/x-cvsweb-markup&cvsroot=gentoo
plain: http://www.gentoo.org/cgi-bin/viewcvs.cgi/xml/htdocs/doc/en/handbook/draft/hb-install-ppc-medium.xml?rev=1.27&content-type=text/plain&cvsroot=gentoo
diff : http://www.gentoo.org/cgi-bin/viewcvs.cgi/xml/htdocs/doc/en/handbook/draft/hb-install-ppc-medium.xml.diff?r1=1.26&r2=1.27&cvsroot=gentoo
--
gentoo-doc-cvs@gentoo.org mailing list
^ permalink raw reply [flat|nested] 23+ messages in thread
* [gentoo-doc-cvs] cvs commit: hb-install-ppc-bootloader.xml
@ 2005-08-08 14:07 swift
0 siblings, 0 replies; 23+ messages in thread
From: swift @ 2005-08-08 14:07 UTC (permalink / raw
To: gentoo-doc-cvs
swift 05/08/08 14:07:32
Removed: xml/htdocs/doc/en/handbook/draft/2005.1
hb-install-ppc-bootloader.xml
Log:
Removing hb-install-ppc-bootloader.xml from this location
--
gentoo-doc-cvs@gentoo.org mailing list
^ permalink raw reply [flat|nested] 23+ messages in thread
* [gentoo-doc-cvs] cvs commit: hb-install-ppc-bootloader.xml
@ 2005-09-05 15:08 Xavier Neys
0 siblings, 0 replies; 23+ messages in thread
From: Xavier Neys @ 2005-09-05 15:08 UTC (permalink / raw
To: gentoo-doc-cvs
neysx 05/09/05 15:08:54
Modified: xml/htdocs/doc/en/handbook hb-install-ppc-bootloader.xml
Log:
#104892 Fixed typo
Revision Changes Path
1.30 +4 -4 xml/htdocs/doc/en/handbook/hb-install-ppc-bootloader.xml
file : http://www.gentoo.org/cgi-bin/viewcvs.cgi/xml/htdocs/doc/en/handbook/hb-install-ppc-bootloader.xml?rev=1.30&content-type=text/x-cvsweb-markup&cvsroot=gentoo
plain: http://www.gentoo.org/cgi-bin/viewcvs.cgi/xml/htdocs/doc/en/handbook/hb-install-ppc-bootloader.xml?rev=1.30&content-type=text/plain&cvsroot=gentoo
diff : http://www.gentoo.org/cgi-bin/viewcvs.cgi/xml/htdocs/doc/en/handbook/hb-install-ppc-bootloader.xml.diff?r1=1.29&r2=1.30&cvsroot=gentoo
Index: hb-install-ppc-bootloader.xml
===================================================================
RCS file: /var/cvsroot/gentoo/xml/htdocs/doc/en/handbook/hb-install-ppc-bootloader.xml,v
retrieving revision 1.29
retrieving revision 1.30
diff -u -r1.29 -r1.30
--- hb-install-ppc-bootloader.xml 12 Aug 2005 08:51:50 -0000 1.29
+++ hb-install-ppc-bootloader.xml 5 Sep 2005 15:08:54 -0000 1.30
@@ -4,12 +4,12 @@
<!-- The content of this document is licensed under the CC-BY-SA license -->
<!-- See http://creativecommons.org/licenses/by-sa/1.0 -->
-<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/doc/en/handbook/hb-install-ppc-bootloader.xml,v 1.29 2005/08/12 08:51:50 swift Exp $ -->
+<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/doc/en/handbook/hb-install-ppc-bootloader.xml,v 1.30 2005/09/05 15:08:54 neysx Exp $ -->
<sections>
-<version>2.6</version>
-<date>2005-08-12</date>
+<version>2.7</version>
+<date>2005-09-05</date>
<section>
<title>Choosing a Bootloader</title>
@@ -298,7 +298,7 @@
<p>
Once the machine has booted into MacOS, open the BootX control panel. If you're
-not using genkernel, select <c>Options</c> and uncheck <c>Used specified RAM
+not using genkernel, select <c>Options</c> and uncheck <c>Use specified RAM
disk</c>. If you are using genkernel, ensure that the genkernel initrd is
selected instead of the Installation CD initrd. If not using genkernel,
there is now an option to specify the machine's Linux root disk and partition.
--
gentoo-doc-cvs@gentoo.org mailing list
^ permalink raw reply [flat|nested] 23+ messages in thread
* [gentoo-doc-cvs] cvs commit: hb-install-ppc-bootloader.xml
@ 2005-09-05 15:08 Xavier Neys
0 siblings, 0 replies; 23+ messages in thread
From: Xavier Neys @ 2005-09-05 15:08 UTC (permalink / raw
To: gentoo-doc-cvs
neysx 05/09/05 15:08:54
Modified: xml/htdocs/doc/en/handbook/2005.1
hb-install-ppc-bootloader.xml
Log:
#104892 Fixed typo
Revision Changes Path
1.4 +4 -4 xml/htdocs/doc/en/handbook/2005.1/hb-install-ppc-bootloader.xml
file : http://www.gentoo.org/cgi-bin/viewcvs.cgi/xml/htdocs/doc/en/handbook/2005.1/hb-install-ppc-bootloader.xml?rev=1.4&content-type=text/x-cvsweb-markup&cvsroot=gentoo
plain: http://www.gentoo.org/cgi-bin/viewcvs.cgi/xml/htdocs/doc/en/handbook/2005.1/hb-install-ppc-bootloader.xml?rev=1.4&content-type=text/plain&cvsroot=gentoo
diff : http://www.gentoo.org/cgi-bin/viewcvs.cgi/xml/htdocs/doc/en/handbook/2005.1/hb-install-ppc-bootloader.xml.diff?r1=1.3&r2=1.4&cvsroot=gentoo
Index: hb-install-ppc-bootloader.xml
===================================================================
RCS file: /var/cvsroot/gentoo/xml/htdocs/doc/en/handbook/2005.1/hb-install-ppc-bootloader.xml,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- hb-install-ppc-bootloader.xml 12 Aug 2005 08:51:50 -0000 1.3
+++ hb-install-ppc-bootloader.xml 5 Sep 2005 15:08:54 -0000 1.4
@@ -4,12 +4,12 @@
<!-- The content of this document is licensed under the CC-BY-SA license -->
<!-- See http://creativecommons.org/licenses/by-sa/1.0 -->
-<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/doc/en/handbook/2005.1/hb-install-ppc-bootloader.xml,v 1.3 2005/08/12 08:51:50 swift Exp $ -->
+<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/doc/en/handbook/2005.1/hb-install-ppc-bootloader.xml,v 1.4 2005/09/05 15:08:54 neysx Exp $ -->
<sections>
-<version>5.1</version>
-<date>2005-08-12</date>
+<version>5.2</version>
+<date>2005-09-05</date>
<section>
<title>Choosing a Bootloader</title>
@@ -298,7 +298,7 @@
<p>
Once the machine has booted into MacOS, open the BootX control panel. If you're
-not using genkernel, select <c>Options</c> and uncheck <c>Used specified RAM
+not using genkernel, select <c>Options</c> and uncheck <c>Use specified RAM
disk</c>. If you are using genkernel, ensure that the genkernel initrd is
selected instead of the Installation CD initrd. If not using genkernel,
there is now an option to specify the machine's Linux root disk and partition.
--
gentoo-doc-cvs@gentoo.org mailing list
^ permalink raw reply [flat|nested] 23+ messages in thread
* [gentoo-doc-cvs] cvs commit: hb-install-ppc-bootloader.xml
@ 2005-09-09 7:49 Shyam Mani
0 siblings, 0 replies; 23+ messages in thread
From: Shyam Mani @ 2005-09-09 7:49 UTC (permalink / raw
To: gentoo-doc-cvs
fox2mike 05/09/09 07:49:22
Modified: xml/htdocs/doc/en/handbook hb-install-ppc-bootloader.xml
Log:
#104958 - Minor grammar fixes, thanks to vanquirius. Seems someone fixed most of them and didn't close the bug.
Revision Changes Path
1.31 +3 -3 xml/htdocs/doc/en/handbook/hb-install-ppc-bootloader.xml
file : http://www.gentoo.org/cgi-bin/viewcvs.cgi/xml/htdocs/doc/en/handbook/hb-install-ppc-bootloader.xml?rev=1.31&content-type=text/x-cvsweb-markup&cvsroot=gentoo
plain: http://www.gentoo.org/cgi-bin/viewcvs.cgi/xml/htdocs/doc/en/handbook/hb-install-ppc-bootloader.xml?rev=1.31&content-type=text/plain&cvsroot=gentoo
diff : http://www.gentoo.org/cgi-bin/viewcvs.cgi/xml/htdocs/doc/en/handbook/hb-install-ppc-bootloader.xml.diff?r1=1.30&r2=1.31&cvsroot=gentoo
Index: hb-install-ppc-bootloader.xml
===================================================================
RCS file: /var/cvsroot/gentoo/xml/htdocs/doc/en/handbook/hb-install-ppc-bootloader.xml,v
retrieving revision 1.30
retrieving revision 1.31
diff -u -r1.30 -r1.31
--- hb-install-ppc-bootloader.xml 5 Sep 2005 15:08:54 -0000 1.30
+++ hb-install-ppc-bootloader.xml 9 Sep 2005 07:49:22 -0000 1.31
@@ -4,7 +4,7 @@
<!-- The content of this document is licensed under the CC-BY-SA license -->
<!-- See http://creativecommons.org/licenses/by-sa/1.0 -->
-<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/doc/en/handbook/hb-install-ppc-bootloader.xml,v 1.30 2005/09/05 15:08:54 neysx Exp $ -->
+<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/doc/en/handbook/hb-install-ppc-bootloader.xml,v 1.31 2005/09/09 07:49:22 fox2mike Exp $ -->
<sections>
@@ -19,7 +19,7 @@
<p>
Now that the kernel is configured and compiled, you'll need a <e>bootloader</e>
-to start your new linux installation. The <e>bootloader</e> that you use will
+to start your new Linux installation. The <e>bootloader</e> that you use will
depend upon the type of PPC machine you have.
</p>
@@ -81,7 +81,7 @@
root=/dev/ram0 <comment># If using genkernel this is /dev/ram0</comment>
partition=3
append="real_root=/dev/hda3 init=/linuxrc"
- <comment># You can add additional kernel arguments to append such as
+ <comment># You can add additional kernel arguments to be appended such as
# rootdelay=10 for a USB/Firewire Boot</comment>
read-only
<comment>##########################################################</comment>
--
gentoo-doc-cvs@gentoo.org mailing list
^ permalink raw reply [flat|nested] 23+ messages in thread
* [gentoo-doc-cvs] cvs commit: hb-install-ppc-bootloader.xml
@ 2006-02-18 16:06 Joseph Jezak
0 siblings, 0 replies; 23+ messages in thread
From: Joseph Jezak @ 2006-02-18 16:06 UTC (permalink / raw
To: gentoo-doc-cvs
josejx 06/02/18 16:06:38
Modified: xml/htdocs/doc/en/handbook/draft/2006.0
hb-install-ppc-bootloader.xml
Log:
Change the kernel versions and stop people from completely updating their systems when installing yaboot.
Revision Changes Path
1.3 +18 -19 xml/htdocs/doc/en/handbook/draft/2006.0/hb-install-ppc-bootloader.xml
file : http://www.gentoo.org/cgi-bin/viewcvs.cgi/xml/htdocs/doc/en/handbook/draft/2006.0/hb-install-ppc-bootloader.xml?rev=1.3&content-type=text/x-cvsweb-markup&cvsroot=gentoo
plain: http://www.gentoo.org/cgi-bin/viewcvs.cgi/xml/htdocs/doc/en/handbook/draft/2006.0/hb-install-ppc-bootloader.xml?rev=1.3&content-type=text/plain&cvsroot=gentoo
diff : http://www.gentoo.org/cgi-bin/viewcvs.cgi/xml/htdocs/doc/en/handbook/draft/2006.0/hb-install-ppc-bootloader.xml.diff?r1=1.2&r2=1.3&cvsroot=gentoo
Index: hb-install-ppc-bootloader.xml
===================================================================
RCS file: /var/cvsroot/gentoo/xml/htdocs/doc/en/handbook/draft/2006.0/hb-install-ppc-bootloader.xml,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- hb-install-ppc-bootloader.xml 13 Feb 2006 17:07:35 -0000 1.2
+++ hb-install-ppc-bootloader.xml 18 Feb 2006 16:06:38 -0000 1.3
@@ -4,12 +4,12 @@
<!-- The content of this document is licensed under the CC-BY-SA license -->
<!-- See http://creativecommons.org/licenses/by-sa/1.0 -->
-<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/doc/en/handbook/draft/2006.0/hb-install-ppc-bootloader.xml,v 1.2 2006/02/13 17:07:35 josejx Exp $ -->
+<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/doc/en/handbook/draft/2006.0/hb-install-ppc-bootloader.xml,v 1.3 2006/02/18 16:06:38 josejx Exp $ -->
<sections>
-<version>5.4</version>
-<date>2006-02-09</date>
+<version>5.5</version>
+<date>2006-02-18</date>
<section>
<title>Choosing a Bootloader</title>
@@ -78,10 +78,10 @@
<pre caption="Adding genkernel boot arguments to yaboot.conf">
<comment>###########################################################
## This section can be duplicated if you have more than one
-## kernel or set of boot options - replace kernel-2.6.12
+## kernel or set of boot options - replace kernel-2.6.15
## with the exact filename of your kernel.
###########################################################</comment>
-image=/boot/kernel-2.6.12
+image=/boot/kernel-2.6.15
label=Linux
root=/dev/ram0 <comment># If using genkernel this is /dev/ram0</comment>
partition=3
@@ -114,12 +114,12 @@
To use <c>yabootconfig</c>, your drive must have an Apple_Bootstrap partition,
and <path>/etc/fstab</path> must be configured to reflect your Linux
partitions. These steps should have already been completed before, but check
-<path>/etc/fstab</path> before proceeding. Now, ensure that you have the
-latest <c>yaboot</c> installed.
+<path>/etc/fstab</path> before proceeding. Now, ensure that you have
+<c>yaboot</c> installed.
</p>
<pre caption = "Installing yaboot with GRP">
-# <i>emerge --usepkg --update yaboot</i>
+# <i>emerge --usepkg yaboot</i>
</pre>
<p>
@@ -156,11 +156,11 @@
<body>
<p>
-First make sure you have the latest <c>yaboot</c> installed on your system:
+First make sure you have <c>yaboot</c> installed on your system:
</p>
-<pre caption = "Installing yaboot">
-# <i>emerge --usepkg --update yaboot</i>
+<pre caption = "Installing yaboot with GRP">
+# <i>emerge --usepkg yaboot</i>
</pre>
<p>
@@ -364,7 +364,7 @@
root = /dev/hda4
timeout = 30
default = gentoo
-image = /vmlinux-2.6.12
+image = /vmlinux-2.6.15
label = gentoo
</pre>
@@ -392,7 +392,7 @@
# <i>nvsetenv input-device kbd</i>
# <i>nvsetenv boot-device scsi/sd@1:0</i> <comment># For SCSI</comment>
# <i>nvsetenv boot-device ata/ata-disk@0:0</i> <comment># For ATA</comment>
-# <i>nvsetenv boot-file /boot/vmlinux-2.6.12 root=/dev/hda4</i> <comment>First item is the path to the kernel, the second is the root partition. You may append any kernel options to the end of this line.</comment>
+# <i>nvsetenv boot-file /boot/vmlinux-2.6.15 root=/dev/hda4</i> <comment>First item is the path to the kernel, the second is the root partition. You may append any kernel options to the end of this line.</comment>
# <i>nvsetenv boot-command boot</i> <comment># Set this to bye for MacOS and boot for Linux</comment>
</pre>
@@ -435,12 +435,11 @@
</impo>
<p>
-First make sure you have the latest <c>bootcreator</c> installed on your
-system:
+First make sure you have <c>bootcreator</c> installed on your system:
</p>
<pre caption = "Installing bootcreator">
-# <i>emerge --usepkg --update bootcreator</i>
+# <i>emerge --usepkg bootcreator</i>
</pre>
<p>
@@ -479,12 +478,12 @@
ide:0 boot2.img ramdebug edebugflags="logkprintf"
[SECTION]
-Local HD -> Linux 2.6.12 (Normal)
-ide:0 linux-2.6.12 video=radeonfb:1024x768@70 root=/dev/hda3
+Local HD -> Linux 2.6.15 (Normal)
+ide:0 linux-2.6.15 video=radeonfb:1024x768@70 root=/dev/hda3
[SECTION]
Local HD -> Genkernel (Normal)
-ide:0 kernelz-2.6.12 root=/dev/ram0 real_root=/dev/hda3 init=/linuxrc
+ide:0 kernelz-2.6.15 root=/dev/ram0 real_root=/dev/hda3 init=/linuxrc
</pre>
<p>
--
gentoo-doc-cvs@gentoo.org mailing list
^ permalink raw reply [flat|nested] 23+ messages in thread
* [gentoo-doc-cvs] cvs commit: hb-install-ppc-bootloader.xml
@ 2006-07-14 7:04 Lukasz Damentko
0 siblings, 0 replies; 23+ messages in thread
From: Lukasz Damentko @ 2006-07-14 7:04 UTC (permalink / raw
To: gentoo-doc-cvs
rane 06/07/14 07:04:39
Modified: hb-install-ppc-bootloader.xml
Log:
removing an unncessary comment
Revision Changes Path
1.35 xml/htdocs/doc/en/handbook/hb-install-ppc-bootloader.xml
file : http://www.gentoo.org/cgi-bin/viewcvs.cgi/xml/htdocs/doc/en/handbook/hb-install-ppc-bootloader.xml?rev=1.35&content-type=text/x-cvsweb-markup&cvsroot=gentoo
plain: http://www.gentoo.org/cgi-bin/viewcvs.cgi/xml/htdocs/doc/en/handbook/hb-install-ppc-bootloader.xml?rev=1.35&content-type=text/plain&cvsroot=gentoo
diff : http://www.gentoo.org/cgi-bin/viewcvs.cgi/xml/htdocs/doc/en/handbook/hb-install-ppc-bootloader.xml.diff?r1=1.34&r2=1.35&cvsroot=gentoo
Index: hb-install-ppc-bootloader.xml
===================================================================
RCS file: /var/cvsroot/gentoo/xml/htdocs/doc/en/handbook/hb-install-ppc-bootloader.xml,v
retrieving revision 1.34
retrieving revision 1.35
diff -u -r1.34 -r1.35
--- hb-install-ppc-bootloader.xml 14 Mar 2006 19:29:29 -0000 1.34
+++ hb-install-ppc-bootloader.xml 14 Jul 2006 07:04:39 -0000 1.35
@@ -4,12 +4,12 @@
<!-- The content of this document is licensed under the CC-BY-SA license -->
<!-- See http://creativecommons.org/licenses/by-sa/2.5 -->
-<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/doc/en/handbook/hb-install-ppc-bootloader.xml,v 1.34 2006/03/14 19:29:29 neysx Exp $ -->
+<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/doc/en/handbook/hb-install-ppc-bootloader.xml,v 1.35 2006/07/14 07:04:39 rane Exp $ -->
<sections>
-<version>2.9</version>
-<date>2006-02-27</date>
+<version>2.10</version>
+<date>2006-07-14</date>
<section>
<title>Choosing a Bootloader</title>
@@ -83,7 +83,7 @@
###########################################################</comment>
image=/boot/kernel-2.6.15
label=Linux
- root=/dev/ram0 <comment># If using genkernel this is /dev/ram0</comment>
+ root=/dev/ram0
partition=3
append="real_root=/dev/hda3 init=/linuxrc"
<comment># You can add additional kernel arguments to be appended such as
--
gentoo-doc-cvs@gentoo.org mailing list
^ permalink raw reply [flat|nested] 23+ messages in thread
* [gentoo-doc-cvs] cvs commit: hb-install-ppc-bootloader.xml
@ 2006-07-14 7:05 Lukasz Damentko
0 siblings, 0 replies; 23+ messages in thread
From: Lukasz Damentko @ 2006-07-14 7:05 UTC (permalink / raw
To: gentoo-doc-cvs
rane 06/07/14 07:05:45
Modified: hb-install-ppc-bootloader.xml
Log:
removing an unncessary comment
Revision Changes Path
1.4 xml/htdocs/doc/en/handbook/2006.0/hb-install-ppc-bootloader.xml
file : http://www.gentoo.org/cgi-bin/viewcvs.cgi/xml/htdocs/doc/en/handbook/2006.0/hb-install-ppc-bootloader.xml?rev=1.4&content-type=text/x-cvsweb-markup&cvsroot=gentoo
plain: http://www.gentoo.org/cgi-bin/viewcvs.cgi/xml/htdocs/doc/en/handbook/2006.0/hb-install-ppc-bootloader.xml?rev=1.4&content-type=text/plain&cvsroot=gentoo
diff : http://www.gentoo.org/cgi-bin/viewcvs.cgi/xml/htdocs/doc/en/handbook/2006.0/hb-install-ppc-bootloader.xml.diff?r1=1.3&r2=1.4&cvsroot=gentoo
Index: hb-install-ppc-bootloader.xml
===================================================================
RCS file: /var/cvsroot/gentoo/xml/htdocs/doc/en/handbook/2006.0/hb-install-ppc-bootloader.xml,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- hb-install-ppc-bootloader.xml 14 Mar 2006 19:30:36 -0000 1.3
+++ hb-install-ppc-bootloader.xml 14 Jul 2006 07:05:45 -0000 1.4
@@ -4,12 +4,12 @@
<!-- The content of this document is licensed under the CC-BY-SA license -->
<!-- See http://creativecommons.org/licenses/by-sa/2.5 -->
-<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/doc/en/handbook/2006.0/hb-install-ppc-bootloader.xml,v 1.3 2006/03/14 19:30:36 neysx Exp $ -->
+<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/doc/en/handbook/2006.0/hb-install-ppc-bootloader.xml,v 1.4 2006/07/14 07:05:45 rane Exp $ -->
<sections>
-<version>6.0</version>
-<date>2006-02-27</date>
+<version>6.1</version>
+<date>2006-07-14</date>
<section>
<title>Choosing a Bootloader</title>
@@ -83,7 +83,7 @@
###########################################################</comment>
image=/boot/kernel-2.6.15
label=Linux
- root=/dev/ram0 <comment># If using genkernel this is /dev/ram0</comment>
+ root=/dev/ram0
partition=3
append="real_root=/dev/hda3 init=/linuxrc"
<comment># You can add additional kernel arguments to append such as
--
gentoo-doc-cvs@gentoo.org mailing list
^ permalink raw reply [flat|nested] 23+ messages in thread
* [gentoo-doc-cvs] cvs commit: hb-install-ppc-bootloader.xml
@ 2006-08-16 15:14 Joseph Jezak
0 siblings, 0 replies; 23+ messages in thread
From: Joseph Jezak @ 2006-08-16 15:14 UTC (permalink / raw
To: gentoo-doc-cvs
josejx 06/08/16 15:14:58
Modified: hb-install-ppc-bootloader.xml
Log:
Fixed umount as in bug #143704.
Revision Changes Path
1.3 xml/htdocs/doc/en/handbook/draft/2006.1/hb-install-ppc-bootloader.xml
file : http://sources.gentoo.org/viewcvs.py/gentoo/xml/htdocs/doc/en/handbook/draft/2006.1/hb-install-ppc-bootloader.xml?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo/xml/htdocs/doc/en/handbook/draft/2006.1/hb-install-ppc-bootloader.xml?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo/xml/htdocs/doc/en/handbook/draft/2006.1/hb-install-ppc-bootloader.xml?r1=1.2&r2=1.3
Index: hb-install-ppc-bootloader.xml
===================================================================
RCS file: /var/cvsroot/gentoo/xml/htdocs/doc/en/handbook/draft/2006.1/hb-install-ppc-bootloader.xml,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- hb-install-ppc-bootloader.xml 11 Aug 2006 16:31:53 -0000 1.2
+++ hb-install-ppc-bootloader.xml 16 Aug 2006 15:14:58 -0000 1.3
@@ -4,7 +4,7 @@
<!-- The content of this document is licensed under the CC-BY-SA license -->
<!-- See http://creativecommons.org/licenses/by-sa/2.5 -->
-<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/doc/en/handbook/draft/2006.1/hb-install-ppc-bootloader.xml,v 1.2 2006/08/11 16:31:53 josejx Exp $ -->
+<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/doc/en/handbook/draft/2006.1/hb-install-ppc-bootloader.xml,v 1.3 2006/08/16 15:14:58 josejx Exp $ -->
<sections>
@@ -296,7 +296,7 @@
<pre caption="Unmounting all partitions and rebooting">
cdimage ~# <i>cd /</i>
-cdimage ~# <i>umount /mnt/gentoo/proc /mnt/gentoo/dev /mnt/gentoo /mnt/mac</i>
+cdimage ~# <i>umount /mnt/gentoo/proc /mnt/gentoo/dev /mnt/gentoo/sys /mnt/gentoo /mnt/mac</i>
cdimage ~# <i>reboot</i>
</pre>
@@ -522,7 +522,7 @@
<pre caption="Exiting the chroot, unmounting all partitions and rebooting">
# <i>exit</i>
-livecd ~# <i>umount /mnt/gentoo/proc /mnt/gentoo/dev /mnt/gentoo</i>
+livecd ~# <i>umount /mnt/gentoo/proc /mnt/gentoo/dev /mnt/gentoo/sys /mnt/gentoo</i>
livecd ~# <i>reboot</i>
</pre>
--
gentoo-doc-cvs@gentoo.org mailing list
^ permalink raw reply [flat|nested] 23+ messages in thread
* [gentoo-doc-cvs] cvs commit: hb-install-ppc-bootloader.xml
@ 2006-08-30 21:27 Joseph Jezak
0 siblings, 0 replies; 23+ messages in thread
From: Joseph Jezak @ 2006-08-30 21:27 UTC (permalink / raw
To: gentoo-doc-cvs
josejx 06/08/30 21:27:32
Added: hb-install-ppc-bootloader.xml
Log:
Added bootloader doc.
Revision Changes Path
1.23 xml/htdocs/doc/en/handbook/draft/hb-install-ppc-bootloader.xml
file : http://sources.gentoo.org/viewcvs.py/gentoo/xml/htdocs/doc/en/handbook/draft/hb-install-ppc-bootloader.xml?rev=1.23&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo/xml/htdocs/doc/en/handbook/draft/hb-install-ppc-bootloader.xml?rev=1.23&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo/xml/htdocs/doc/en/handbook/draft/hb-install-ppc-bootloader.xml?r1=1.22&r2=1.23
--
gentoo-doc-cvs@gentoo.org mailing list
^ permalink raw reply [flat|nested] 23+ messages in thread
* [gentoo-doc-cvs] cvs commit: hb-install-ppc-bootloader.xml
@ 2006-09-06 12:56 Joseph Jezak
0 siblings, 0 replies; 23+ messages in thread
From: Joseph Jezak @ 2006-09-06 12:56 UTC (permalink / raw
To: gentoo-doc-cvs
josejx 06/09/06 12:56:08
Modified: hb-install-ppc-bootloader.xml
Log:
Fixed incorrect yaboot heading, thanks to yther for pointing it out.
Revision Changes Path
1.38 xml/htdocs/doc/en/handbook/hb-install-ppc-bootloader.xml
file : http://sources.gentoo.org/viewcvs.py/gentoo/xml/htdocs/doc/en/handbook/hb-install-ppc-bootloader.xml?rev=1.38&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo/xml/htdocs/doc/en/handbook/hb-install-ppc-bootloader.xml?rev=1.38&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo/xml/htdocs/doc/en/handbook/hb-install-ppc-bootloader.xml?r1=1.37&r2=1.38
Index: hb-install-ppc-bootloader.xml
===================================================================
RCS file: /var/cvsroot/gentoo/xml/htdocs/doc/en/handbook/hb-install-ppc-bootloader.xml,v
retrieving revision 1.37
retrieving revision 1.38
diff -u -r1.37 -r1.38
--- hb-install-ppc-bootloader.xml 30 Aug 2006 22:52:28 -0000 1.37
+++ hb-install-ppc-bootloader.xml 6 Sep 2006 12:56:08 -0000 1.38
@@ -4,12 +4,12 @@
<!-- The content of this document is licensed under the CC-BY-SA license -->
<!-- See http://creativecommons.org/licenses/by-sa/2.5 -->
-<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/doc/en/handbook/hb-install-ppc-bootloader.xml,v 1.37 2006/08/30 22:52:28 nightmorph Exp $ -->
+<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/doc/en/handbook/hb-install-ppc-bootloader.xml,v 1.38 2006/09/06 12:56:08 josejx Exp $ -->
<sections>
-<version>7.0</version>
-<date>2006-08-30</date>
+<version>7.1</version>
+<date>2006-09-06</date>
<section>
<title>Choosing a Bootloader</title>
@@ -120,7 +120,7 @@
<c>yaboot</c> installed.
</p>
-<pre caption = "Installing yaboot with GRP">
+<pre caption = "Installing yaboot">
# <i>emerge yaboot</i>
</pre>
--
gentoo-doc-cvs@gentoo.org mailing list
^ permalink raw reply [flat|nested] 23+ messages in thread
* [gentoo-doc-cvs] cvs commit: hb-install-ppc-bootloader.xml
@ 2006-11-13 8:11 Joseph Jezak
0 siblings, 0 replies; 23+ messages in thread
From: Joseph Jezak @ 2006-11-13 8:11 UTC (permalink / raw
To: gentoo-doc-cvs
josejx 06/11/13 08:11:03
Modified: hb-install-ppc-bootloader.xml
Log:
Clarify yaboot instruction.
Revision Changes Path
1.39 xml/htdocs/doc/en/handbook/hb-install-ppc-bootloader.xml
file : http://sources.gentoo.org/viewcvs.py/gentoo/xml/htdocs/doc/en/handbook/hb-install-ppc-bootloader.xml?rev=1.39&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo/xml/htdocs/doc/en/handbook/hb-install-ppc-bootloader.xml?rev=1.39&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo/xml/htdocs/doc/en/handbook/hb-install-ppc-bootloader.xml?r1=1.38&r2=1.39
Index: hb-install-ppc-bootloader.xml
===================================================================
RCS file: /var/cvsroot/gentoo/xml/htdocs/doc/en/handbook/hb-install-ppc-bootloader.xml,v
retrieving revision 1.38
retrieving revision 1.39
diff -u -r1.38 -r1.39
--- hb-install-ppc-bootloader.xml 6 Sep 2006 12:56:08 -0000 1.38
+++ hb-install-ppc-bootloader.xml 13 Nov 2006 08:11:03 -0000 1.39
@@ -4,12 +4,12 @@
<!-- The content of this document is licensed under the CC-BY-SA license -->
<!-- See http://creativecommons.org/licenses/by-sa/2.5 -->
-<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/doc/en/handbook/hb-install-ppc-bootloader.xml,v 1.38 2006/09/06 12:56:08 josejx Exp $ -->
+<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/doc/en/handbook/hb-install-ppc-bootloader.xml,v 1.39 2006/11/13 08:11:03 josejx Exp $ -->
<sections>
-<version>7.1</version>
-<date>2006-09-06</date>
+<version>7.2</version>
+<date>2006-11-13</date>
<section>
<title>Choosing a Bootloader</title>
@@ -244,6 +244,10 @@
update the settings by running <c>ybin -v</c>
</p>
+<pre caption="Setting up the bootstrap partition">
+# mkofboot -v
+</pre>
+
<p>
For more information on yaboot, take a look at the <uri
link="http://penguinppc.org/bootloaders/yaboot">yaboot project</uri>. For
--
gentoo-doc-cvs@gentoo.org mailing list
^ permalink raw reply [flat|nested] 23+ messages in thread
* [gentoo-doc-cvs] cvs commit: hb-install-ppc-bootloader.xml
@ 2006-11-13 8:12 Joseph Jezak
0 siblings, 0 replies; 23+ messages in thread
From: Joseph Jezak @ 2006-11-13 8:12 UTC (permalink / raw
To: gentoo-doc-cvs
josejx 06/11/13 08:12:21
Modified: hb-install-ppc-bootloader.xml
Log:
Clarify yaboot instruction.
Revision Changes Path
1.2 xml/htdocs/doc/en/handbook/2006.1/hb-install-ppc-bootloader.xml
file : http://sources.gentoo.org/viewcvs.py/gentoo/xml/htdocs/doc/en/handbook/2006.1/hb-install-ppc-bootloader.xml?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo/xml/htdocs/doc/en/handbook/2006.1/hb-install-ppc-bootloader.xml?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo/xml/htdocs/doc/en/handbook/2006.1/hb-install-ppc-bootloader.xml?r1=1.1&r2=1.2
Index: hb-install-ppc-bootloader.xml
===================================================================
RCS file: /var/cvsroot/gentoo/xml/htdocs/doc/en/handbook/2006.1/hb-install-ppc-bootloader.xml,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- hb-install-ppc-bootloader.xml 30 Aug 2006 20:17:31 -0000 1.1
+++ hb-install-ppc-bootloader.xml 13 Nov 2006 08:12:20 -0000 1.2
@@ -4,12 +4,12 @@
<!-- The content of this document is licensed under the CC-BY-SA license -->
<!-- See http://creativecommons.org/licenses/by-sa/2.5 -->
-<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/doc/en/handbook/2006.1/hb-install-ppc-bootloader.xml,v 1.1 2006/08/30 20:17:31 nightmorph Exp $ -->
+<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/doc/en/handbook/2006.1/hb-install-ppc-bootloader.xml,v 1.2 2006/11/13 08:12:20 josejx Exp $ -->
<sections>
-<version>7.0</version>
-<date>2006-08-30</date>
+<version>7.1</version>
+<date>2006-11-13</date>
<section>
<title>Choosing a Bootloader</title>
@@ -244,6 +244,10 @@
update the settings by running <c>ybin -v</c>
</p>
+<pre caption="Setting up the bootstrap partition">
+# mkofboot -v
+</pre>
+
<p>
For more information on yaboot, take a look at the <uri
link="http://penguinppc.org/bootloaders/yaboot">yaboot project</uri>. For
--
gentoo-doc-cvs@gentoo.org mailing list
^ permalink raw reply [flat|nested] 23+ messages in thread
* [gentoo-doc-cvs] cvs commit: hb-install-ppc-bootloader.xml
@ 2006-11-13 9:56 Josh Saddler
0 siblings, 0 replies; 23+ messages in thread
From: Josh Saddler @ 2006-11-13 9:56 UTC (permalink / raw
To: gentoo-doc-cvs
nightmorph 06/11/13 09:56:55
Modified: hb-install-ppc-bootloader.xml
Log:
proper <i> guidexml code fixes for josejx's previous commit, no revbump
Revision Changes Path
1.40 xml/htdocs/doc/en/handbook/hb-install-ppc-bootloader.xml
file : http://sources.gentoo.org/viewcvs.py/gentoo/xml/htdocs/doc/en/handbook/hb-install-ppc-bootloader.xml?rev=1.40&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo/xml/htdocs/doc/en/handbook/hb-install-ppc-bootloader.xml?rev=1.40&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo/xml/htdocs/doc/en/handbook/hb-install-ppc-bootloader.xml?r1=1.39&r2=1.40
Index: hb-install-ppc-bootloader.xml
===================================================================
RCS file: /var/cvsroot/gentoo/xml/htdocs/doc/en/handbook/hb-install-ppc-bootloader.xml,v
retrieving revision 1.39
retrieving revision 1.40
diff -u -r1.39 -r1.40
--- hb-install-ppc-bootloader.xml 13 Nov 2006 08:11:03 -0000 1.39
+++ hb-install-ppc-bootloader.xml 13 Nov 2006 09:56:55 -0000 1.40
@@ -4,7 +4,7 @@
<!-- The content of this document is licensed under the CC-BY-SA license -->
<!-- See http://creativecommons.org/licenses/by-sa/2.5 -->
-<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/doc/en/handbook/hb-install-ppc-bootloader.xml,v 1.39 2006/11/13 08:11:03 josejx Exp $ -->
+<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/doc/en/handbook/hb-install-ppc-bootloader.xml,v 1.40 2006/11/13 09:56:55 nightmorph Exp $ -->
<sections>
@@ -245,7 +245,7 @@
</p>
<pre caption="Setting up the bootstrap partition">
-# mkofboot -v
+# <i>mkofboot -v</i>
</pre>
<p>
--
gentoo-doc-cvs@gentoo.org mailing list
^ permalink raw reply [flat|nested] 23+ messages in thread
* [gentoo-doc-cvs] cvs commit: hb-install-ppc-bootloader.xml
@ 2006-11-13 9:56 Josh Saddler
0 siblings, 0 replies; 23+ messages in thread
From: Josh Saddler @ 2006-11-13 9:56 UTC (permalink / raw
To: gentoo-doc-cvs
nightmorph 06/11/13 09:56:56
Modified: hb-install-ppc-bootloader.xml
Log:
proper <i> guidexml code fixes for josejx's previous commit, no revbump
Revision Changes Path
1.3 xml/htdocs/doc/en/handbook/2006.1/hb-install-ppc-bootloader.xml
file : http://sources.gentoo.org/viewcvs.py/gentoo/xml/htdocs/doc/en/handbook/2006.1/hb-install-ppc-bootloader.xml?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo/xml/htdocs/doc/en/handbook/2006.1/hb-install-ppc-bootloader.xml?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo/xml/htdocs/doc/en/handbook/2006.1/hb-install-ppc-bootloader.xml?r1=1.2&r2=1.3
Index: hb-install-ppc-bootloader.xml
===================================================================
RCS file: /var/cvsroot/gentoo/xml/htdocs/doc/en/handbook/2006.1/hb-install-ppc-bootloader.xml,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- hb-install-ppc-bootloader.xml 13 Nov 2006 08:12:20 -0000 1.2
+++ hb-install-ppc-bootloader.xml 13 Nov 2006 09:56:55 -0000 1.3
@@ -4,7 +4,7 @@
<!-- The content of this document is licensed under the CC-BY-SA license -->
<!-- See http://creativecommons.org/licenses/by-sa/2.5 -->
-<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/doc/en/handbook/2006.1/hb-install-ppc-bootloader.xml,v 1.2 2006/11/13 08:12:20 josejx Exp $ -->
+<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/doc/en/handbook/2006.1/hb-install-ppc-bootloader.xml,v 1.3 2006/11/13 09:56:55 nightmorph Exp $ -->
<sections>
@@ -245,7 +245,7 @@
</p>
<pre caption="Setting up the bootstrap partition">
-# mkofboot -v
+# <i>mkofboot -v</i>
</pre>
<p>
--
gentoo-doc-cvs@gentoo.org mailing list
^ permalink raw reply [flat|nested] 23+ messages in thread
* [gentoo-doc-cvs] cvs commit: hb-install-ppc-bootloader.xml
@ 2007-03-19 10:05 Josh Saddler
0 siblings, 0 replies; 23+ messages in thread
From: Josh Saddler @ 2007-03-19 10:05 UTC (permalink / raw
To: gentoo-doc-cvs
nightmorph 07/03/19 10:05:06
Modified: hb-install-ppc-bootloader.xml
Log:
more inserts -- and some fixups, commented out stuff from the networkless handbook that was mixed in somehow
Revision Changes Path
1.27 xml/htdocs/doc/en/handbook/draft/hb-install-ppc-bootloader.xml
file : http://sources.gentoo.org/viewcvs.py/gentoo/xml/htdocs/doc/en/handbook/draft/hb-install-ppc-bootloader.xml?rev=1.27&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo/xml/htdocs/doc/en/handbook/draft/hb-install-ppc-bootloader.xml?rev=1.27&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo/xml/htdocs/doc/en/handbook/draft/hb-install-ppc-bootloader.xml?r1=1.26&r2=1.27
Index: hb-install-ppc-bootloader.xml
===================================================================
RCS file: /var/cvsroot/gentoo/xml/htdocs/doc/en/handbook/draft/hb-install-ppc-bootloader.xml,v
retrieving revision 1.26
retrieving revision 1.27
diff -u -r1.26 -r1.27
--- hb-install-ppc-bootloader.xml 16 Mar 2007 05:31:09 -0000 1.26
+++ hb-install-ppc-bootloader.xml 19 Mar 2007 10:05:06 -0000 1.27
@@ -4,11 +4,11 @@
<!-- The content of this document is licensed under the CC-BY-SA license -->
<!-- See http://creativecommons.org/licenses/by-sa/2.5 -->
-<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/doc/en/handbook/draft/hb-install-ppc-bootloader.xml,v 1.26 2007/03/16 05:31:09 josejx Exp $ -->
+<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/doc/en/handbook/draft/hb-install-ppc-bootloader.xml,v 1.27 2007/03/19 10:05:06 nightmorph Exp $ -->
<sections>
-<version>7.3</version>
+<version>8.0</version>
<date>2007-03-15</date>
<section>
@@ -121,8 +121,13 @@
</p>
<pre caption = "Installing yaboot">
-# <i>emerge --usepkg yaboot</i>
+# <i>emerge yaboot</i>
</pre>
+<!-- what's with all the networkless stuff in here
+<pre caption = "Installing yaboot">
+# <i>emerge usepkg yaboot</i>
+</pre>
+-->
<p>
Now exit the chroot and run <c>yabootconfig --chroot /mnt/gentoo</c>. First,
@@ -163,9 +168,15 @@
First, install <c>yaboot</c> on your system:
</p>
+<pre caption="Installing yaboot">
+# <i>emerge yaboot</i>
+</pre>
+
+<!-- should be in networkless, not here
<pre caption = "Installing yaboot with GRP">
-# <i>emerge --usepkg yaboot</i>
+# <i>emerge usepkg yaboot</i>
</pre>
+-->
<p>
An example <path>yaboot.conf</path> file is given below, but you will need to
@@ -357,17 +368,22 @@
</p>
<pre caption="Emerge quik">
-# <i>emerge --usepkg quik</i>
+# <i>emerge quik</i>
</pre>
+<!-- again, should be in networkless, not here
+<pre caption="Emerge quik">
+# <i>emerge usepkg quik</i>
+</pre>
+-->
<p>
-Next, we'll need to set it up. Edit /etc/quik.conf and set your image to the
+Next, we'll need to set it up. Edit <path>/etc/quik.conf</path> and set your image to the
kernel that we copied to your boot partition.
</p>
<pre caption="Configuring quik.conf">
# Example of quik.conf
-init-message = "Gentoo 2006.1\n"
+init-message = "Gentoo 2007.0\n"
partition = 2 <comment># This is the boot partition</comment>
root = /dev/hda4
timeout = 30
@@ -400,7 +416,7 @@
# <i>nvsetenv input-device kbd</i>
# <i>nvsetenv boot-device scsi/sd@1:0</i> <comment># For SCSI</comment>
# <i>nvsetenv boot-device ata/ata-disk@0:0</i> <comment># For ATA</comment>
-# <i>nvsetenv boot-file /boot/vmlinux-2.6.17 root=/dev/hda4</i> <comment>First item is the path to the kernel, the second is the root partition. You may append any kernel options to the end of this line.</comment>
+# <i>nvsetenv boot-file /boot/vmlinux-<keyval id="kernel-version"/> root=/dev/hda4</i> <comment>First item is the path to the kernel, the second is the root partition. You may append any kernel options to the end of this line.</comment>
# <i>nvsetenv boot-command boot</i> <comment># Set this to bye for MacOS and boot for Linux</comment>
</pre>
@@ -447,8 +463,13 @@
</p>
<pre caption = "Installing bootcreator">
-# <i>emerge --usepkg bootcreator</i>
+# <i>emerge bootcreator</i>
+</pre>
+<!-- what's with all this networkless stuff?!?
+<pre caption = "Installing bootcreator">
+# <i>emerge usepkg bootcreator</i>
</pre>
+-->
<p>
Now copy the file <path>/etc/bootmenu.example</path> into
@@ -495,7 +516,7 @@
</pre>
<p>
-Finally the <path>bootmenu</path> must be transfered into Forth and copied to
+Finally the <path>bootmenu</path> must be transferred into Forth and copied to
your boot partition, so that the SmartFirmware can read it. Therefore you have
to call <c>bootcreator</c>:
</p>
--
gentoo-doc-cvs@gentoo.org mailing list
^ permalink raw reply [flat|nested] 23+ messages in thread
* [gentoo-doc-cvs] cvs commit: hb-install-ppc-bootloader.xml
@ 2007-04-01 23:33 Josh Saddler
0 siblings, 0 replies; 23+ messages in thread
From: Josh Saddler @ 2007-04-01 23:33 UTC (permalink / raw
To: gentoo-doc-cvs
nightmorph 07/04/01 23:33:57
Modified: hb-install-ppc-bootloader.xml
Log:
minor formatting changes
Revision Changes Path
1.28 xml/htdocs/doc/en/handbook/draft/hb-install-ppc-bootloader.xml
file : http://sources.gentoo.org/viewcvs.py/gentoo/xml/htdocs/doc/en/handbook/draft/hb-install-ppc-bootloader.xml?rev=1.28&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo/xml/htdocs/doc/en/handbook/draft/hb-install-ppc-bootloader.xml?rev=1.28&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo/xml/htdocs/doc/en/handbook/draft/hb-install-ppc-bootloader.xml?r1=1.27&r2=1.28
Index: hb-install-ppc-bootloader.xml
===================================================================
RCS file: /var/cvsroot/gentoo/xml/htdocs/doc/en/handbook/draft/hb-install-ppc-bootloader.xml,v
retrieving revision 1.27
retrieving revision 1.28
diff -u -r1.27 -r1.28
--- hb-install-ppc-bootloader.xml 19 Mar 2007 10:05:06 -0000 1.27
+++ hb-install-ppc-bootloader.xml 1 Apr 2007 23:33:57 -0000 1.28
@@ -4,7 +4,7 @@
<!-- The content of this document is licensed under the CC-BY-SA license -->
<!-- See http://creativecommons.org/licenses/by-sa/2.5 -->
-<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/doc/en/handbook/draft/hb-install-ppc-bootloader.xml,v 1.27 2007/03/19 10:05:06 nightmorph Exp $ -->
+<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/doc/en/handbook/draft/hb-install-ppc-bootloader.xml,v 1.28 2007/04/01 23:33:57 nightmorph Exp $ -->
<sections>
@@ -123,11 +123,6 @@
<pre caption = "Installing yaboot">
# <i>emerge yaboot</i>
</pre>
-<!-- what's with all the networkless stuff in here
-<pre caption = "Installing yaboot">
-# <i>emerge usepkg yaboot</i>
-</pre>
--->
<p>
Now exit the chroot and run <c>yabootconfig --chroot /mnt/gentoo</c>. First,
@@ -172,12 +167,6 @@
# <i>emerge yaboot</i>
</pre>
-<!-- should be in networkless, not here
-<pre caption = "Installing yaboot with GRP">
-# <i>emerge usepkg yaboot</i>
-</pre>
--->
-
<p>
An example <path>yaboot.conf</path> file is given below, but you will need to
alter it to fit your needs. G5 users and users booting from firewire and USB
@@ -370,15 +359,10 @@
<pre caption="Emerge quik">
# <i>emerge quik</i>
</pre>
-<!-- again, should be in networkless, not here
-<pre caption="Emerge quik">
-# <i>emerge usepkg quik</i>
-</pre>
--->
<p>
-Next, we'll need to set it up. Edit <path>/etc/quik.conf</path> and set your image to the
-kernel that we copied to your boot partition.
+Next, we'll need to set it up. Edit <path>/etc/quik.conf</path> and set your
+image to the kernel that we copied to your boot partition.
</p>
<pre caption="Configuring quik.conf">
@@ -389,7 +373,7 @@
timeout = 30
default = gentoo
image = /vmlinux <comment># This is your kernel</comment>
- label = gentoo
+ label = gentoo
</pre>
<p>
@@ -421,12 +405,13 @@
</pre>
<note>
-It is also possible to change your boot variables from MacOS. Depending
-upon the model, either
-<uri link="http://penguinppc.org/bootloaders/quik/BootVars.sit.hqx">bootvars</uri> or
-<uri link="ftp://ftp.apple.com/developer/macosxserver/utilities/SystemDisk2.3.1.smi.bin">
-Apple System Disk</uri> should be used. Please see the quik quirks page
-above for more information.
+It is also possible to change your boot variables from MacOS. Depending upon
+the model, either <uri
+link="http://penguinppc.org/bootloaders/quik/BootVars.sit.hqx">bootvars</uri> or
+<uri
+link="ftp://ftp.apple.com/developer/macosxserver/utilities/SystemDisk2.3.1.smi.bin">
+Apple System Disk</uri> should be used. Please see the quik quirks page above
+for more information.
</note>
<p>
@@ -465,11 +450,6 @@
<pre caption = "Installing bootcreator">
# <i>emerge bootcreator</i>
</pre>
-<!-- what's with all this networkless stuff?!?
-<pre caption = "Installing bootcreator">
-# <i>emerge usepkg bootcreator</i>
-</pre>
--->
<p>
Now copy the file <path>/etc/bootmenu.example</path> into
--
gentoo-doc-cvs@gentoo.org mailing list
^ permalink raw reply [flat|nested] 23+ messages in thread
* [gentoo-doc-cvs] cvs commit: hb-install-ppc-bootloader.xml
@ 2007-04-01 23:35 Josh Saddler
0 siblings, 0 replies; 23+ messages in thread
From: Josh Saddler @ 2007-04-01 23:35 UTC (permalink / raw
To: gentoo-doc-cvs
nightmorph 07/04/01 23:35:32
Modified: hb-install-ppc-bootloader.xml
Log:
minor formatting changes
Revision Changes Path
1.4 xml/htdocs/doc/en/handbook/2007.0/hb-install-ppc-bootloader.xml
file : http://sources.gentoo.org/viewcvs.py/gentoo/xml/htdocs/doc/en/handbook/2007.0/hb-install-ppc-bootloader.xml?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo/xml/htdocs/doc/en/handbook/2007.0/hb-install-ppc-bootloader.xml?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo/xml/htdocs/doc/en/handbook/2007.0/hb-install-ppc-bootloader.xml?r1=1.3&r2=1.4
Index: hb-install-ppc-bootloader.xml
===================================================================
RCS file: /var/cvsroot/gentoo/xml/htdocs/doc/en/handbook/2007.0/hb-install-ppc-bootloader.xml,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- hb-install-ppc-bootloader.xml 28 Mar 2007 13:36:09 -0000 1.3
+++ hb-install-ppc-bootloader.xml 1 Apr 2007 23:35:32 -0000 1.4
@@ -4,11 +4,11 @@
<!-- The content of this document is licensed under the CC-BY-SA license -->
<!-- See http://creativecommons.org/licenses/by-sa/2.5 -->
-<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/doc/en/handbook/2007.0/hb-install-ppc-bootloader.xml,v 1.3 2007/03/28 13:36:09 neysx Exp $ -->
+<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/doc/en/handbook/2007.0/hb-install-ppc-bootloader.xml,v 1.4 2007/04/01 23:35:32 nightmorph Exp $ -->
<sections>
-<version>7.1</version>
+<version>8.0</version>
<date>2007-01-13</date>
<section>
@@ -144,6 +144,8 @@
You might want to verify the contents of <path>/etc/yaboot.conf</path>. If you
make changes to <path>/etc/yaboot.conf</path> (like setting the default/boot
OS), make sure to rerun <c>ybin -v</c> to apply changes to the Apple_Bootstrap
+partition. Whenever you make a change to yaboot.conf, like when testing a new
+kernel, always remember to run <c>ybin -v</c> to update the bootstrap
partition.
</p>
@@ -355,12 +357,12 @@
</p>
<pre caption="Emerge quik">
-# <i>emerge quik</i>
+# <i>emerge --usepkg quik</i>
</pre>
<p>
-Next, we'll need to set it up. Edit /etc/quik.conf and set your image to the
-kernel that we copied to your boot partition.
+Next, we'll need to set it up. Edit <path>/etc/quik.conf</path> and set your
+image to the kernel that we copied to your boot partition.
</p>
<pre caption="Configuring quik.conf">
@@ -371,7 +373,7 @@
timeout = 30
default = gentoo
image = /vmlinux <comment># This is your kernel</comment>
- label = gentoo
+ label = gentoo
</pre>
<p>
@@ -403,12 +405,13 @@
</pre>
<note>
-It is also possible to change your boot variables from MacOS. Depending
-upon the model, either
-<uri link="http://penguinppc.org/bootloaders/quik/BootVars.sit.hqx">bootvars</uri> or
-<uri link="ftp://ftp.apple.com/developer/macosxserver/utilities/SystemDisk2.3.1.smi.bin">
-Apple System Disk</uri> should be used. Please see the quik quirks page
-above for more information.
+It is also possible to change your boot variables from MacOS. Depending upon
+the model, either <uri
+link="http://penguinppc.org/bootloaders/quik/BootVars.sit.hqx">bootvars</uri> or
+<uri
+link="ftp://ftp.apple.com/developer/macosxserver/utilities/SystemDisk2.3.1.smi.bin">
+Apple System Disk</uri> should be used. Please see the quik quirks page above
+for more information.
</note>
<p>
--
gentoo-doc-cvs@gentoo.org mailing list
^ permalink raw reply [flat|nested] 23+ messages in thread
* [gentoo-doc-cvs] cvs commit: hb-install-ppc-bootloader.xml
@ 2007-04-02 2:20 Joseph Jezak
0 siblings, 0 replies; 23+ messages in thread
From: Joseph Jezak @ 2007-04-02 2:20 UTC (permalink / raw
To: gentoo-doc-cvs
josejx 07/04/02 02:20:46
Modified: hb-install-ppc-bootloader.xml
Log:
Sync bootloader docs to draft.
Revision Changes Path
1.5 xml/htdocs/doc/en/handbook/2007.0/hb-install-ppc-bootloader.xml
file : http://sources.gentoo.org/viewcvs.py/gentoo/xml/htdocs/doc/en/handbook/2007.0/hb-install-ppc-bootloader.xml?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo/xml/htdocs/doc/en/handbook/2007.0/hb-install-ppc-bootloader.xml?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo/xml/htdocs/doc/en/handbook/2007.0/hb-install-ppc-bootloader.xml?r1=1.4&r2=1.5
Index: hb-install-ppc-bootloader.xml
===================================================================
RCS file: /var/cvsroot/gentoo/xml/htdocs/doc/en/handbook/2007.0/hb-install-ppc-bootloader.xml,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- hb-install-ppc-bootloader.xml 1 Apr 2007 23:35:32 -0000 1.4
+++ hb-install-ppc-bootloader.xml 2 Apr 2007 02:20:46 -0000 1.5
@@ -4,12 +4,12 @@
<!-- The content of this document is licensed under the CC-BY-SA license -->
<!-- See http://creativecommons.org/licenses/by-sa/2.5 -->
-<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/doc/en/handbook/2007.0/hb-install-ppc-bootloader.xml,v 1.4 2007/04/01 23:35:32 nightmorph Exp $ -->
+<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/doc/en/handbook/2007.0/hb-install-ppc-bootloader.xml,v 1.5 2007/04/02 02:20:46 josejx Exp $ -->
<sections>
<version>8.0</version>
-<date>2007-01-13</date>
+<date>2007-04-01</date>
<section>
<title>Choosing a Bootloader</title>
@@ -28,7 +28,7 @@
<uri link="#yaboot">yaboot</uri>. OldWorld Apple machines have two options,
<uri link="#bootx">BootX</uri> (recommended) and <uri link="#quik">quik</uri>.
The Pegasos does not require a bootloader, but you will need to emerge
-<uri link="#bootcreator">BootCreator</uri> to create SmartFirmware bootmenus.
+<uri link="#bootcreator">bootcreator</uri> to create SmartFirmware boot menus.
</p>
</body>
@@ -72,24 +72,24 @@
<note>
You will need to manually edit the yaboot.conf when using genkernel, even if
yabootconfig is used. The kernel image section of yaboot.conf should be
-modified as follows:
+modified as follows (using vmlinux and initrd as the name of kernel and
+initrd image):
</note>
<pre caption="Adding genkernel boot arguments to yaboot.conf">
<comment>###########################################################
## This section can be duplicated if you have more than one
-## kernel or set of boot options - replace kernel-name
-## and initrd-name with the exact filename of your kernel
-## and initrd image.
+## kernel or set of boot options - replace vmlinux and initrd
+## with the exact filename of your kernel and initrd image.
###########################################################</comment>
-image=/boot/kernel-name
+image=/boot/vmlinux
label=Linux
root=/dev/ram0
partition=3
- initrd=/boot/initrd-name
- append="real_root=/dev/hda3 init=/linuxrc"
+ initrd=/boot/initrd
<comment># You can add additional kernel arguments to append such as
# rootdelay=10 for a USB/Firewire Boot</comment>
+ append="real_root=/dev/hda3 init=/linuxrc"
read-only
<comment>##########################################################</comment>
</pre>
@@ -115,12 +115,12 @@
<p>
To use <c>yabootconfig</c>, your drive must have an Apple_Bootstrap partition,
and <path>/etc/fstab</path> must be configured to reflect your Linux
-partitions. These steps should have already been completed before, but check
-<path>/etc/fstab</path> before proceeding. Now, ensure that you have
-<c>yaboot</c> installed.
+partitions (note that the Bootstrap partition should <e>not</e> be in your
+fstab). These steps should have already been completed before, but check
+<path>/etc/fstab</path> before proceeding. Now, install <c>yaboot</c>.
</p>
-<pre caption = "Installing yaboot with GRP">
+<pre caption = "Installing yaboot from GRP">
# <i>emerge --usepkg yaboot</i>
</pre>
@@ -141,10 +141,10 @@
</pre>
<p>
-You might want to verify the contents of <path>/etc/yaboot.conf</path>. If you
-make changes to <path>/etc/yaboot.conf</path> (like setting the default/boot
-OS), make sure to rerun <c>ybin -v</c> to apply changes to the Apple_Bootstrap
-partition. Whenever you make a change to yaboot.conf, like when testing a new
+You should verify the contents of <path>/etc/yaboot.conf</path>. If you make
+changes to <path>/etc/yaboot.conf</path> (like setting the default/boot OS),
+make sure to rerun <c>ybin -v</c> to apply changes to the Apple_Bootstrap
+partition. Whenever you make a change to yaboot.conf, like when testing a new
kernel, always remember to run <c>ybin -v</c> to update the bootstrap
partition.
</p>
@@ -160,10 +160,10 @@
<body>
<p>
-First make sure you have <c>yaboot</c> installed on your system:
+First, install <c>yaboot</c> on your system:
</p>
-<pre caption = "Installing yaboot with GRP">
+<pre caption="Installing yaboot from GRP">
# <i>emerge --usepkg yaboot</i>
</pre>
@@ -219,9 +219,9 @@
<comment>#################
## This section can be duplicated if you have more than one kernel or set of
-## boot options - replace kernel-name with your kernel-version
+## boot options - replace vmlinux with your kernel-version
#################</comment>
-image=/boot/kernel-name
+image=/boot/vmlinux
label=Linux
root=/dev/hda3
partition=3
@@ -356,7 +356,7 @@
First, we'll need to install quik:
</p>
-<pre caption="Emerge quik">
+<pre caption="Emerge quik from GRP">
# <i>emerge --usepkg quik</i>
</pre>
@@ -400,7 +400,7 @@
# <i>nvsetenv input-device kbd</i>
# <i>nvsetenv boot-device scsi/sd@1:0</i> <comment># For SCSI</comment>
# <i>nvsetenv boot-device ata/ata-disk@0:0</i> <comment># For ATA</comment>
-# <i>nvsetenv boot-file /boot/vmlinux-2.6.17 root=/dev/hda4</i> <comment>First item is the path to the kernel, the second is the root partition. You may append any kernel options to the end of this line.</comment>
+# <i>nvsetenv boot-file /boot/vmlinux-<keyval id="kernel-version"/> root=/dev/hda4</i> <comment>First item is the path to the kernel, the second is the root partition. You may append any kernel options to the end of this line.</comment>
# <i>nvsetenv boot-command boot</i> <comment># Set this to bye for MacOS and boot for Linux</comment>
</pre>
@@ -447,13 +447,13 @@
First make sure you have <c>bootcreator</c> installed on your system:
</p>
-<pre caption = "Installing bootcreator">
+<pre caption = "Installing bootcreator from GRP">
# <i>emerge --usepkg bootcreator</i>
</pre>
<p>
Now copy the file <path>/etc/bootmenu.example</path> into
-<path>/etc/bootmenu</path> and edit it to your needs:
+<path>/etc/bootmenu</path> and edit it to suit your needs:
</p>
<pre caption = "Edit the bootcreator config file">
@@ -462,8 +462,8 @@
</pre>
<p>
-Below is a complete <path>/etc/bootmenu</path> config file. The kernel-name
-and initrd-name should be replaced by your kernel and initrd image names.
+Below is a complete <path>/etc/bootmenu</path> config file. vmlinux and
+initrd should be replaced by your kernel and initrd image names.
</p>
<pre caption = "bootcreator config file">
@@ -488,15 +488,15 @@
[SECTION]
Local HD -> Linux (Normal)
-ide:0 kernel-name video=radeonfb:1024x768@70 root=/dev/hda3
+ide:0 kernel video=radeonfb:1024x768@70 root=/dev/hda3
[SECTION]
Local HD -> Genkernel (Normal)
-ide:0 kernel-name root=/dev/ram0 real_root=/dev/hda3 init=/linuxrc initrd=initrd-name
+ide:0 kernel root=/dev/ram0 real_root=/dev/hda3 init=/linuxrc initrd=initrd
</pre>
<p>
-Finally the <path>bootmenu</path> must be transfered into Forth and copied to
+Finally the <path>bootmenu</path> must be transferred into Forth and copied to
your boot partition, so that the SmartFirmware can read it. Therefore you have
to call <c>bootcreator</c>:
</p>
--
gentoo-doc-cvs@gentoo.org mailing list
^ permalink raw reply [flat|nested] 23+ messages in thread
* [gentoo-doc-cvs] cvs commit: hb-install-ppc-bootloader.xml
@ 2007-04-02 2:22 Joseph Jezak
0 siblings, 0 replies; 23+ messages in thread
From: Joseph Jezak @ 2007-04-02 2:22 UTC (permalink / raw
To: gentoo-doc-cvs
josejx 07/04/02 02:22:45
Modified: hb-install-ppc-bootloader.xml
Log:
Fix a kernel naming issue.
Revision Changes Path
1.29 xml/htdocs/doc/en/handbook/draft/hb-install-ppc-bootloader.xml
file : http://sources.gentoo.org/viewcvs.py/gentoo/xml/htdocs/doc/en/handbook/draft/hb-install-ppc-bootloader.xml?rev=1.29&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo/xml/htdocs/doc/en/handbook/draft/hb-install-ppc-bootloader.xml?rev=1.29&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo/xml/htdocs/doc/en/handbook/draft/hb-install-ppc-bootloader.xml?r1=1.28&r2=1.29
Index: hb-install-ppc-bootloader.xml
===================================================================
RCS file: /var/cvsroot/gentoo/xml/htdocs/doc/en/handbook/draft/hb-install-ppc-bootloader.xml,v
retrieving revision 1.28
retrieving revision 1.29
diff -u -r1.28 -r1.29
--- hb-install-ppc-bootloader.xml 1 Apr 2007 23:33:57 -0000 1.28
+++ hb-install-ppc-bootloader.xml 2 Apr 2007 02:22:45 -0000 1.29
@@ -4,7 +4,7 @@
<!-- The content of this document is licensed under the CC-BY-SA license -->
<!-- See http://creativecommons.org/licenses/by-sa/2.5 -->
-<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/doc/en/handbook/draft/hb-install-ppc-bootloader.xml,v 1.28 2007/04/01 23:33:57 nightmorph Exp $ -->
+<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/doc/en/handbook/draft/hb-install-ppc-bootloader.xml,v 1.29 2007/04/02 02:22:45 josejx Exp $ -->
<sections>
@@ -219,9 +219,9 @@
<comment>#################
## This section can be duplicated if you have more than one kernel or set of
-## boot options - replace kernel-name with your kernel-version
+## boot options - replace vmlinux with your kernel version
#################</comment>
-image=/boot/kernel-name
+image=/boot/vmlinux
label=Linux
root=/dev/hda3
partition=3
@@ -230,7 +230,7 @@
<comment>##################
## G5 users and some G4 users should set
-## macos=hd:13
+## macos=hd:13/
## macosx=hd:12
## instead of the example values.</comment>
macos=/dev/hda13
@@ -462,8 +462,8 @@
</pre>
<p>
-Below is a complete <path>/etc/bootmenu</path> config file. The kernel-name
-and initrd-name should be replaced by your kernel and initrd image names.
+Below is a complete <path>/etc/bootmenu</path> config file. vmlinux and
+initrd should be replaced by your kernel and initrd image names.
</p>
<pre caption = "bootcreator config file">
@@ -488,11 +488,11 @@
[SECTION]
Local HD -> Linux (Normal)
-ide:0 kernel-name video=radeonfb:1024x768@70 root=/dev/hda3
+ide:0 vmlinux video=radeonfb:1024x768@70 root=/dev/hda3
[SECTION]
Local HD -> Genkernel (Normal)
-ide:0 kernel-name root=/dev/ram0 real_root=/dev/hda3 init=/linuxrc initrd=initrd-name
+ide:0 vmlinux root=/dev/ram0 real_root=/dev/hda3 init=/linuxrc initrd=initrd
</pre>
<p>
--
gentoo-doc-cvs@gentoo.org mailing list
^ permalink raw reply [flat|nested] 23+ messages in thread
* [gentoo-doc-cvs] cvs commit: hb-install-ppc-bootloader.xml
@ 2007-04-25 17:46 Lukasz Damentko
0 siblings, 0 replies; 23+ messages in thread
From: Lukasz Damentko @ 2007-04-25 17:46 UTC (permalink / raw
To: gentoo-doc-cvs
rane 07/04/25 17:46:20
Modified: hb-install-ppc-bootloader.xml
Log:
s/kenrel/kernel/ - thx to kucrut for reporting
Revision Changes Path
1.8 xml/htdocs/doc/en/handbook/2007.0/hb-install-ppc-bootloader.xml
file : http://sources.gentoo.org/viewcvs.py/gentoo/xml/htdocs/doc/en/handbook/2007.0/hb-install-ppc-bootloader.xml?rev=1.8&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo/xml/htdocs/doc/en/handbook/2007.0/hb-install-ppc-bootloader.xml?rev=1.8&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo/xml/htdocs/doc/en/handbook/2007.0/hb-install-ppc-bootloader.xml?r1=1.7&r2=1.8
Index: hb-install-ppc-bootloader.xml
===================================================================
RCS file: /var/cvsroot/gentoo/xml/htdocs/doc/en/handbook/2007.0/hb-install-ppc-bootloader.xml,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- hb-install-ppc-bootloader.xml 13 Apr 2007 15:34:14 -0000 1.7
+++ hb-install-ppc-bootloader.xml 25 Apr 2007 17:46:20 -0000 1.8
@@ -4,12 +4,12 @@
<!-- The content of this document is licensed under the CC-BY-SA license -->
<!-- See http://creativecommons.org/licenses/by-sa/2.5 -->
-<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/doc/en/handbook/2007.0/hb-install-ppc-bootloader.xml,v 1.7 2007/04/13 15:34:14 nightmorph Exp $ -->
+<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/doc/en/handbook/2007.0/hb-install-ppc-bootloader.xml,v 1.8 2007/04/25 17:46:20 rane Exp $ -->
<sections>
-<version>8.0</version>
-<date>2007-04-13</date>
+<version>8.1</version>
+<date>2007-04-25</date>
<section>
<title>Choosing a Bootloader</title>
@@ -82,7 +82,7 @@
## kernel or set of boot options - replace the image and initrd
## with the exact filename of your kernel and initrd image.
###########################################################</comment>
-image=/boot/kenrel-genkernel-ppc-<keyval id="kernel-gentoo"/>
+image=/boot/kernel-genkernel-ppc-<keyval id="kernel-gentoo"/>
label=Linux
root=/dev/ram0
partition=3
--
gentoo-doc-cvs@gentoo.org mailing list
^ permalink raw reply [flat|nested] 23+ messages in thread
* [gentoo-doc-cvs] cvs commit: hb-install-ppc-bootloader.xml
@ 2007-05-15 0:46 Lukasz Damentko
0 siblings, 0 replies; 23+ messages in thread
From: Lukasz Damentko @ 2007-05-15 0:46 UTC (permalink / raw
To: gentoo-doc-cvs
rane 07/05/15 00:46:29
Modified: hb-install-ppc-bootloader.xml
Log:
s/kenrel/kernel/ - thanks to kucrut for reporting
Revision Changes Path
1.42 xml/htdocs/doc/en/handbook/hb-install-ppc-bootloader.xml
file : http://sources.gentoo.org/viewcvs.py/gentoo/xml/htdocs/doc/en/handbook/hb-install-ppc-bootloader.xml?rev=1.42&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo/xml/htdocs/doc/en/handbook/hb-install-ppc-bootloader.xml?rev=1.42&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo/xml/htdocs/doc/en/handbook/hb-install-ppc-bootloader.xml?r1=1.41&r2=1.42
Index: hb-install-ppc-bootloader.xml
===================================================================
RCS file: /var/cvsroot/gentoo/xml/htdocs/doc/en/handbook/hb-install-ppc-bootloader.xml,v
retrieving revision 1.41
retrieving revision 1.42
diff -u -r1.41 -r1.42
--- hb-install-ppc-bootloader.xml 7 May 2007 18:11:41 -0000 1.41
+++ hb-install-ppc-bootloader.xml 15 May 2007 00:46:29 -0000 1.42
@@ -4,12 +4,12 @@
<!-- The content of this document is licensed under the CC-BY-SA license -->
<!-- See http://creativecommons.org/licenses/by-sa/2.5 -->
-<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/doc/en/handbook/hb-install-ppc-bootloader.xml,v 1.41 2007/05/07 18:11:41 nightmorph Exp $ -->
+<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/doc/en/handbook/hb-install-ppc-bootloader.xml,v 1.42 2007/05/15 00:46:29 rane Exp $ -->
<sections>
-<version>8.0</version>
-<date>2007-05-07</date>
+<version>8.1</version>
+<date>2007-05-15</date>
<section>
<title>Choosing a Bootloader</title>
@@ -82,7 +82,7 @@
## kernel or set of boot options - replace the image and initrd
## with the exact filename of your kernel and initrd image.
###########################################################</comment>
-image=/boot/kenrel-genkernel-ppc-<keyval id="kernel-gentoo"/>
+image=/boot/kernel-genkernel-ppc-<keyval id="kernel-gentoo"/>
label=Linux
root=/dev/ram0
partition=3
--
gentoo-doc-cvs@gentoo.org mailing list
^ permalink raw reply [flat|nested] 23+ messages in thread
end of thread, other threads:[~2007-05-15 0:46 UTC | newest]
Thread overview: 23+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-08-16 15:14 [gentoo-doc-cvs] cvs commit: hb-install-ppc-bootloader.xml Joseph Jezak
-- strict thread matches above, loose matches on Subject: below --
2007-05-15 0:46 Lukasz Damentko
2007-04-25 17:46 Lukasz Damentko
2007-04-02 2:22 Joseph Jezak
2007-04-02 2:20 Joseph Jezak
2007-04-01 23:35 Josh Saddler
2007-04-01 23:33 Josh Saddler
2007-03-19 10:05 Josh Saddler
2006-11-13 9:56 Josh Saddler
2006-11-13 9:56 Josh Saddler
2006-11-13 8:12 Joseph Jezak
2006-11-13 8:11 Joseph Jezak
2006-09-06 12:56 Joseph Jezak
2006-08-30 21:27 Joseph Jezak
2006-07-14 7:05 Lukasz Damentko
2006-07-14 7:04 Lukasz Damentko
2006-02-18 16:06 Joseph Jezak
2005-09-09 7:49 Shyam Mani
2005-09-05 15:08 Xavier Neys
2005-09-05 15:08 Xavier Neys
2005-08-08 14:07 swift
2005-08-04 1:17 Joseph Jezak
2005-07-28 16:42 Joseph Jezak
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox