You first need to select your timezone so that your system knows where it is
located. Look for your timezone in
# ls /usr/share/zoneinfo(Suppose you want to use GMT) # cp /usr/share/zoneinfo/GMT /etc/localtime
The core around which all distributions are built is the Linux kernel. It is the
layer between the user programs and your system hardware. Gentoo provides its
users several possible kernels to choose from. A full listing with description
is available at the
We suggest using
# emerge gentoo-sources
If you take a look in
# ls -l /usr/src/linux lrwxrwxrwx 1 root root 22 Mar 18 16:23 /usr/src/linux -> linux-
Now it is time to configure and compile your kernel source. You can use
If you want to manually configure your kernel, continue now with
Manually configuring a kernel is often seen as the most difficult procedure a Linux user ever has to perform. Nothing is less true -- after configuring a few kernels you won't even remember that it was difficult ;)
However, one thing
Now, go to your kernel source directory, it's time to configure your kernel.
Start by configuring a kernel that will boot on most 32 Bit PowerPC machines
by first running
# cd /usr/src/linux # make pmac32_defconfig # make menuconfig
You will be greeted with several configuration sections. We'll first list some options you must activate (otherwise Gentoo will not function, or not function properly without additional tweaks).
First go to
File systems ---> Pseudo Filesystems --->(/proc may already be forced on by your configuration, if so, you'll see --- instead) [*] /proc file system support [*] Virtual memory file system support (former shm fs) Partition Types ---> [*] Advanced partition support [*] Amiga partition table support [*] Macintosh partition map support(Select one or more of the following options as needed by your system) <*> Reiserfs support <*> Ext3 journalling file system support <*> Second extended fs support <*> XFS filesystem support
Users of NewWorld and OldWorld machines will want HFS support as well. OldWorld users require it for copying compiled kernels to the MacOS partition. NewWorld users require it for configuring the special Apple_Bootstrap partition:
File Systems --->
Miscellaneous filesystems --->
<M> Apple Macintosh file system support
<M> Apple Extended HFS file system support
If you are using PPPoE to connect to the Internet or you are using a dial-up modem, you will need the following options in the kernel:
Device Drivers --->
Network device support --->
<*> PPP (point-to-point protocol) support
<*> PPP support for async serial ports
<*> PPP support for sync tty ports
The two compression options won't harm but are not always needed. The
Don't forget to include support in the kernel for your ethernet card! Most newer Apple computers use the SunGEM ethernet driver. Older iMacs commonly use the BMAC driver.
Device Drivers --->
Network device support --->
Ethernet (10 or 100Mbit) --->
[*] Ethernet (10 or 100Mbit)
<*> Generic Media Independent Interface device support
<*> MACE (Power Mac ethernet) support
<*> BMAC (G3 ethernet) support
<*> Sun GEM support
At this time, full kernel preemption may still be unstable on PPC and may cause
compilation failures and random segfaults. It is
Kernel options --->(Select One) Preemption Model (X) No Forced Preemption (Server) (X) Voluntary Kernel Preemption (Desktop)
If you're booting from Firewire, you'll need to enable these options. If you do not want to compile in support, you'll need to include these modules and their dependencies in an initrd.
Device Drivers --->
IEEE 1394 (FireWire) support --->
<*> IEEE 1394 (FireWire) support
<*> OHCI-1394 support
<*> SBP-2 support (Harddisks etc.)
If you're booting from USB, you'll need to enable these options. If you do not want to compile in support, you'll need to include these modules and their dependencies in an initrd.
Device Drivers --->
USB support --->
<*> Support for Host-side USB
<*> OHCI HCD support
<*> USB Mass Storage support
Do not turn off kernel framebuffer support as it is required for a successful boot. If you are using an NVIDIA based chipset, you should use the Open Firmware framebuffer. If you are using an ATI based chipset, you should select the framebuffer driver based upon your chipset (Mach64, Rage128 or Radeon).
Device Drivers --->
Graphics support --->
<*> Support for frame buffer devices
[*] Open Firmware frame buffer device support
<*> ATI Radeon display support
<*> ATI Rage128 display support
<*> ATI Mach64 display support
Console display driver support --->
<*> Framebuffer Console support
When you're done configuring your kernel, continue with
Now that your kernel is configured, it is time to compile and install it. Exit the configuration menu and run the following commands:
# make && make modules_install
When the kernel has finished compiling, copy the kernel image to
Yaboot and BootX expect to use an uncompressed kernel unlike many other
bootloaders. The uncompressed kernel is called vmlinux and it is placed in
# cd /usr/src/linuxNote, your kernel version might be different (Apple/IBM) # cp vmlinux /boot/(Pegasos) # cp arch/powerpc/boot/images/zImage /boot/
Now continue with
Now that your kernel source tree is installed, it's now time to compile your
kernel by using our
Now, let's see how to use genkernel. First, emerge the genkernel ebuild:
# emerge genkernel
Next, copy over the kernel configuration used by the Installation CD to the location where genkernel looks for the default kernel configuration:
# zcat /proc/config.gz > /usr/share/genkernel/ppc/kernel-config-2.6
If you are using firewire or USB to boot, you'll need to add modules to the
initrd. Edit
Before compiling your sources, the fstab needs a slight adjustment. The rest of
the fstab will be completed during a later step, so don't worry about the
details now. If you did not create a separate boot partition (NOT bootstrap,
that's different), remove the line referencing
# nano -w /etc/fstabRemove this line /dev/BOOT /boot ext2 noauto,noatime 1 2
Now, compile your kernel sources by running
Note that, if your partition where the kernel should be located doesn't use ext2
or ext3 as filesystem you might need to manually configure your kernel using
# genkernel all
# genkernel --genzimage --kernel-config=/usr/share/genkernel/ppc/Pegasos all
Once
Note, your kernel version might be different # ls /boot/kernel-genkernel-ppc-/boot/initramfs-genkernel-ppc-
Now continue with